This repository was archived by the owner on Jan 21, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +231
-211
lines changed Expand file tree Collapse file tree 4 files changed +231
-211
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
/phpunit.xml
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ matrix:
17
17
- php : 7.1
18
18
env :
19
19
- DEPS=locked
20
+ - LEGACY_DEPS="phpunit/phpunit"
20
21
- CS_CHECK=true
21
22
- TEST_COVERAGE=true
22
23
- php : 7.1
@@ -45,9 +46,10 @@ before_install:
45
46
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
46
47
47
48
install :
48
- - travis_retry composer install $COMPOSER_ARGS
49
+ - travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
50
+ - if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
49
51
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
50
- - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
52
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
51
53
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
52
54
- stty cols 120 && composer show
53
55
Original file line number Diff line number Diff line change 22
22
"psr/container" : " ^1.0"
23
23
},
24
24
"require-dev" : {
25
- "phpunit/phpunit" : " ^7.0.2 " ,
25
+ "phpunit/phpunit" : " ^7.5.15 || ^8.3.4 " ,
26
26
"zendframework/zend-auradi-config" : " ^1.0.1" ,
27
27
"zendframework/zend-coding-standard" : " ~1.0.0" ,
28
28
"zendframework/zend-pimple-config" : " ^1.1" ,
You can’t perform that action at this time.
0 commit comments