We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b2b0fb commit 460634aCopy full SHA for 460634a
1 file changed
.travis.yml
@@ -1,25 +1,19 @@
1
language: php
2
3
-sudo: false
4
-
5
php:
6
- - 5.6
7
- - 7.0
8
- 7.2
9
- - 7.3
10
11
+ - 7.4
12
13
matrix:
14
include:
15
- - php: 7.3
+ - php: 7.2
16
env: PHPCS=1
17
18
-before_script: composer install --prefer-dist --dev
+before_script: composer install
19
20
script:
21
- - sh -c "if [ '$PHPCS' != '1' ]; then vendor/bin/phpunit; fi"
22
- - sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p -n --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi"
+ - if [[ $PHPCS != 1 ]]; then vendor/bin/phpunit; fi
+ - if [[ $PHPCS == 1 ]]; then vendor/bin/phpcs -p -n --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi
23
24
notifications:
25
email: false
0 commit comments