Skip to content

Commit 2222d9e

Browse files
Merge branch 'v2'
* v2: Various updates
2 parents a3ea5f2 + 3d4e1b7 commit 2222d9e

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ sudo: false
33
php:
44
- 7.3
55
- 7.2
6-
- 7.1
76
install:
87
- composer install --optimize-autoloader --prefer-dist --no-interaction
8+
before_script:
9+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
10+
- chmod +x ./cc-test-reporter
11+
- ./cc-test-reporter before-build
912
script:
1013
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
11-
after_success:
12-
- vendor/bin/test-reporter
14+
after_script:
15+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.0",
13-
"flow/jsonpath": "^0.3.4",
14-
"phpunit/phpunit": "^7.0",
12+
"php": "^7.2",
13+
"flow/jsonpath": "^0.4.0",
1514
"justinrainbow/json-schema": "^5.0"
1615
},
1716
"require-dev": {
18-
"codeclimate/php-test-reporter": "dev-master"
17+
"phpunit/phpunit": "^8.0"
1918
},
2019
"autoload": {
2120
"psr-4": {

0 commit comments

Comments
 (0)