File tree Expand file tree Collapse file tree 6 files changed +30
-25
lines changed Expand file tree Collapse file tree 6 files changed +30
-25
lines changed Original file line number Diff line number Diff line change 1- .editorconfig export-ignore
2- .gitattributes export-ignore
3- .github / export-ignore
4- .gitignore export-ignore
5- .php_cs export-ignore
6- .scrutinizer.yml export-ignore
7- .styleci.yml export-ignore
8- .travis.yml export-ignore
9- phpspec.yml.ci export-ignore
10- phpspec.yml.dist export-ignore
11- phpunit.xml.dist export-ignore
12- spec / export-ignore
13- tests / export-ignore
1+ .editorconfig export-ignore
2+ .gitattributes export-ignore
3+ /.github / export-ignore
4+ .gitignore export-ignore
5+ /.php_cs export-ignore
6+ /.scrutinizer.yml export-ignore
7+ /.styleci.yml export-ignore
8+ /.travis.yml export-ignore
9+ /behat.yml.dist export-ignore
10+ /features / export-ignore
11+ /phpspec.ci.yml export-ignore
12+ /phpspec.yml.dist export-ignore
13+ /phpunit.xml.dist export-ignore
14+ /spec / export-ignore
15+ /tests / export-ignore
Original file line number Diff line number Diff line change 11| Q | A
22| ------------ | ---
3- | Bug? | no
4- | New Feature? | no
3+ | Bug? | no|yes
4+ | New Feature? | no|yes
55| Version | Specific version or SHA of a commit
66
77
Original file line number Diff line number Diff line change 1- build /
2- vendor /
3- composer.lock
4- phpspec.yml
5- phpunit.xml
1+ /behat.yml
2+ /build /
3+ /composer.lock
4+ /phpspec.yml
5+ /phpunit.xml
6+ /vendor /
Original file line number Diff line number Diff line change @@ -29,14 +29,16 @@ matrix:
2929 env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
3030
3131before_install :
32- - travis_retry composer self-update
32+ - if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
3333
3434install :
35+ # To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
36+ - if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
3537 - travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
3638
3739script :
3840 - $TEST_COMMAND
3941
4042after_success :
41- - if [[ " $COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
42- - if [[ " $COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
43+ - if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
44+ - if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
Original file line number Diff line number Diff line change 1515 "psr/cache" : " ^1.0" ,
1616 "php-http/client-common" : " ^1.1" ,
1717 "php-http/message-factory" : " ^1.0" ,
18- "symfony/options-resolver" : " ^2.6| ^3.0"
18+ "symfony/options-resolver" : " ^2.6 || ^3.0"
1919 },
2020 "require-dev" : {
2121 "phpspec/phpspec" : " ^2.5" ,
2828 },
2929 "scripts" : {
3030 "test" : " vendor/bin/phpspec run" ,
31- "test-ci" : " vendor/bin/phpspec run -c phpspec.yml.ci "
31+ "test-ci" : " vendor/bin/phpspec run -c phpspec.ci.yml "
3232 },
3333 "extra" : {
3434 "branch-alias" : {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments