File tree Expand file tree Collapse file tree 3 files changed +18
-31
lines changed Expand file tree Collapse file tree 3 files changed +18
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 5.6
5- - 7.0
6- - 7.1
74 - 7.2
8-
9- env :
10- global :
11- -
DB=mysql db_dsn='mysql://[email protected] /cakephp_test' 5+ - 7.4
126
137matrix :
148 fast_finish : true
159
1610 include :
17- - php : 7.1
11+ - php : 7.2
1812 env : PHPCS=1 DEFAULT=0
1913
20- - php : 7.1
14+ - php : 7.2
2115 env : PHPSTAN=1 DEFAULT=0
2216
23- - php : 5.6
17+ - php : 7.2
2418 env : PREFER_LOWEST=1
2519
2620before_script :
27- - if [[ $TRAVIS_PHP_VERSION != 7.1 ]]; then phpenv config-rm xdebug.ini; fi
21+ - if [[ $TRAVIS_PHP_VERSION != 7.4 ]]; then phpenv config-rm xdebug.ini; fi
2822
2923 - if [[ $PREFER_LOWEST != 1 ]]; then composer update --no-interaction; fi
3024 - if [[ $PREFER_LOWEST == 1 ]]; then composer update --no-interaction --prefer-lowest --prefer-stable; fi
3125
32- - if [[ $DEFAULT = 1 ]]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi
33-
34- - if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:^3.0; fi
35- - if [[ $PHPSTAN = 1 ]]; then composer require phpstan/phpstan; fi
26+ - if [[ $PHPCS == 1 ]]; then composer require cakephp/cakephp-codesniffer:^4.0; fi
27+ - if [[ $PHPSTAN == 1 ]]; then composer require phpstan/phpstan; fi
3628
3729script :
38- - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.1 ]]; then vendor/bin/phpunit --coverage-clover=clover.xml; fi
39- - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION != 7.1 ]]; then vendor/bin/phpunit; fi
30+ - if [[ $DEFAULT == 1 && $TRAVIS_PHP_VERSION == 7.4 ]]; then vendor/bin/phpunit --coverage-clover=clover.xml; fi
31+ - if [[ $DEFAULT == 1 && $TRAVIS_PHP_VERSION != 7.4 ]]; then vendor/bin/phpunit; fi
4032
41- - if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi
33+ - if [[ $PHPCS == 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi
4234
43- - if [[ $PHPSTAN = 1 ]]; then vendor/bin/phpstan analyse -c phpstan.neon -l 5 src; fi
35+ - if [[ $PHPSTAN == 1 ]]; then vendor/bin/phpstan analyse src; fi
4436
4537after_success :
46- - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.1 ]]; then bash <(curl -s https://codecov.io/bash); fi
38+ - if [[ $DEFAULT == 1 && $TRAVIS_PHP_VERSION == 7.4 ]]; then bash <(curl -s https://codecov.io/bash); fi
4739
4840notifications :
4941 email : false
Original file line number Diff line number Diff line change 11parameters :
2+ level : 6
3+ checkMissingIterableValueType : false
24 ignoreErrors :
3- - '#Call to an undefined method object::getConfig\ (\)#'
5+ -
6+ message : " #^Ternary operator condition is always true\\ .$#"
7+ count : 1
8+ path : src/Auth/JwtAuthenticate.php
You can’t perform that action at this time.
0 commit comments