File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 11language : php
22
3- env :
4- global :
5- - COMPOSER_FLAGS="--no-interaction"
6-
73matrix :
84 include :
95 - php : 7.0
128 - COMPOSER_LOCK=true
139 - php : 7.1
1410 env :
15- # Test lowest dependencies
16- - COMPOSER_FLAGS="--no-interaction --prefer-lowest"
1711 # Test code standard
1812 - STATIC_ANALYSIS=true
1913 # Test with updated dependencies
@@ -25,21 +19,21 @@ matrix:
2519install :
2620 - |
2721 if [[ $COMPOSER_LOCK = true ]]; then
28- composer install $COMPOSER_FLAGS
22+ composer install
2923 else
30- composer update $COMPOSER_FLAGS
24+ composer update
3125 fi
3226 - composer $COMPOSER
3327 # coding style
34- - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.9 temp/ecs; fi
28+ - if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
3529
3630script :
3731 - vendor/bin/phpunit --coverage-clover=coverage.xml -v
3832 # coding style
3933 - if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
4034
4135after_script :
42- - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1 /coveralls.phar;
36+ - wget https://github.com/satooshi/php-coveralls/releases/download/v1.1.0 /coveralls.phar;
4337 - php coveralls.phar --verbose;
4438
4539notifications :
You can’t perform that action at this time.
0 commit comments