File tree Expand file tree Collapse file tree 3 files changed +245
-170
lines changed Expand file tree Collapse file tree 3 files changed +245
-170
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,30 @@ matrix:
1212 - php : 5.6
1313 env :
1414 - EXECUTE_DEPLOYMENT=true
15- - php : 7
15+ - php : 5.6
16+ env : COMPOSER_FLAGS="--prefer-lowest"
17+ - php : 7.0
18+ env : SYMFONY_VERSION='2.9.*'
19+ - php : 7.0
20+ env : SYMFONY_VERSION='3.0.*'
21+ - php : 7.0
22+ env : SYMFONY_VERSION='3.1.*'
1623
1724before_install :
18- - openssl aes-256-cbc -K $encrypted_d3e7229d64cc_key -iv $encrypted_d3e7229d64cc_iv
19- -in .travis/secrets.tar.enc -out .travis/secrets.tar -d
20- - composer self-update
25+ - openssl aes-256-cbc -K $encrypted_d3e7229d64cc_key -iv $encrypted_d3e7229d64cc_iv
26+ -in .travis/secrets.tar.enc -out .travis/secrets.tar -d
27+ - composer self-update
28+ - if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/console=$SYMFONY_VERSION; fi
2129
2230install :
23- - travis_retry composer install --no-interaction
24- - composer info -i
31+ - travis_retry composer update $COMPOSER_FLAG --no-interaction
32+ - composer info -i
2533
2634script :
27- - composer test-travis
35+ - composer test-travis
2836
2937after_success :
30- - if [[ $EXECUTE_DEPLOYMENT == 'true' && $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then ./bin/deploy.sh ; fi
31- - bash <(curl -s https://codecov.io/bash)
32- - wget https://scrutinizer-ci.com/ocular.phar
33- - php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
38+ - if [[ $EXECUTE_DEPLOYMENT == 'true' && $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then ./bin/deploy.sh ; fi
39+ - bash <(curl -s https://codecov.io/bash)
40+ - wget https://scrutinizer-ci.com/ocular.phar
41+ - php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
Original file line number Diff line number Diff line change 1818 "knplabs/github-api" : " ^1.5" ,
1919 "composer/composer" : " ^1.1" ,
2020 "mnapoli/silly-php-di" : " ^1.0" ,
21- "symfony/console" : " ^3.2@dev " ,
21+ "symfony/console" : " ^2.9 | ^3.0 " ,
2222 "mnapoli/silly" : " ^1.4" ,
2323 "tightenco/collect" : " ^5.2" ,
2424 "symfony/filesystem" : " ^3.1" ,
2727 "samsonasik/package-versions" : " ^1.0"
2828 },
2929 "require-dev" : {
30- "phpunit/phpunit" : " ~5.0 " ,
31- "squizlabs/php_codesniffer" : " ~2.0 "
30+ "phpunit/phpunit" : " ~5.4 " ,
31+ "squizlabs/php_codesniffer" : " ~2.6 "
3232 },
3333 "autoload" : {
3434 "psr-4" : {
You can’t perform that action at this time.
0 commit comments