This repository was archived by the owner on Jan 30, 2020. It is now read-only.
File tree 3 files changed +17
-23
lines changed
3 files changed +17
-23
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,14 @@ sudo: false
2
2
3
3
language : php
4
4
5
- branches :
6
- except :
7
- - /^release-.*$/
8
- - /^ghgfk-.*$/
9
-
10
5
cache :
11
6
directories :
12
- - $HOME/.composer/
7
+ - $HOME/.composer/cache
13
8
14
9
env :
15
10
global :
16
11
- COMPOSER_ARGS="--no-interaction"
17
12
- COVERAGE_DEPS="satooshi/php-coveralls"
18
- - LEGACY_DEPS="phpunit/phpunit"
19
13
20
14
matrix :
21
15
include :
@@ -25,7 +19,7 @@ matrix:
25
19
- php : 5.6
26
20
env :
27
21
- DEPS=locked
28
- - CS_CHECK=true
22
+ - LEGACY_DEPS="phpunit/phpunit"
29
23
- php : 5.6
30
24
env :
31
25
- DEPS=latest
@@ -35,16 +29,18 @@ matrix:
35
29
- php : 7
36
30
env :
37
31
- DEPS=locked
32
+ - LEGACY_DEPS="phpunit/phpunit"
38
33
- php : 7
39
34
env :
40
35
- DEPS=latest
41
- - TEST_COVERAGE=true
42
36
- php : 7.1
43
37
env :
44
38
- DEPS=lowest
45
39
- php : 7.1
46
40
env :
47
41
- DEPS=locked
42
+ - CS_CHECK=true
43
+ - TEST_COVERAGE=true
48
44
- php : 7.1
49
45
env :
50
46
- DEPS=latest
@@ -57,15 +53,13 @@ matrix:
57
53
- php : 7.2
58
54
env :
59
55
- DEPS=latest
60
- allow_failures :
61
- - php : 7.2
62
56
63
57
before_install :
64
58
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
65
59
66
60
install :
67
61
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
68
- - if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
62
+ - if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
69
63
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
70
64
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
71
65
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
Original file line number Diff line number Diff line change 32
32
"php" : " ^5.6 || ^7.0" ,
33
33
"zendframework/zend-filter" : " ^2.6" ,
34
34
"zendframework/zend-stdlib" : " ^2.7 || ^3.0" ,
35
- "zendframework/zend-validator" : " ^2.6 "
35
+ "zendframework/zend-validator" : " ^2.10.1 "
36
36
},
37
37
"require-dev" : {
38
38
"phpunit/phpunit" : " ^5.7.23 || ^6.4.3" ,
You can’t perform that action at this time.
0 commit comments