We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e458068 commit 79655f0Copy full SHA for 79655f0
.travis.yml
@@ -6,15 +6,13 @@ env:
6
- RUN_TESTS=1
7
8
php:
9
- - 5.6
10
- - 7.0
11
- - hhvm
+ - 7.3
12
13
sudo: false
14
15
matrix:
16
include:
17
- - php: 5.6
+ - php: 7.2
18
env: PHPCS=1 RUN_TESTS=0
19
20
before_script:
@@ -23,7 +21,7 @@ before_script:
23
21
24
22
script:
25
- sh -c "if [ '$RUN_TESTS' = '1' ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi"
26
- - sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p -n --extensions=php --standard=psr2 ./src ./tests; fi"
+ - sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p ./src ./tests; fi"
27
28
after_script:
29
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
0 commit comments