This repository was archived by the owner on Jan 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +62
-61
lines changed Expand file tree Collapse file tree 4 files changed +62
-61
lines changed Original file line number Diff line number Diff line change
1
+ /.phpunit.result.cache
1
2
/clover.xml
2
3
/coveralls-upload.json
3
4
/docs /html /
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ matrix:
20
20
- php : 7.1
21
21
env :
22
22
- DEPS=locked
23
+ - LEGACY_DEPS="phpunit/phpunit"
23
24
- CS_CHECK=true
24
25
- TEST_COVERAGE=true
25
26
- php : 7.1
@@ -48,9 +49,10 @@ before_install:
48
49
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
49
50
50
51
install :
51
- - travis_retry composer install $COMPOSER_ARGS
52
+ - travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
53
+ - if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
52
54
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
53
- - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
55
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
54
56
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
55
57
- stty cols 120 && composer show
56
58
Original file line number Diff line number Diff line change 22
22
"require-dev" : {
23
23
"ext-phar" : " *" ,
24
24
"doctrine/annotations" : " ^1.0" ,
25
- "phpunit/phpunit" : " ^7.5.15 " ,
25
+ "phpunit/phpunit" : " ^7.5.16 || ^8.4 " ,
26
26
"zendframework/zend-coding-standard" : " ^1.0" ,
27
27
"zendframework/zend-stdlib" : " ^2.7 || ^3.0"
28
28
},
You can’t perform that action at this time.
0 commit comments