13
13
14
14
matrix :
15
15
include :
16
- - php : 5.6
17
- env :
18
- - DEPS=lowest
19
- - php : 5.6
20
- env :
21
- - DEPS=locked
22
- - LEGACY_DEPS="phpunit/phpunit"
23
- - php : 5.6
24
- env :
25
- - DEPS=locked
26
- - LEGACY_DEPS="phpunit/phpunit"
27
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
28
- - php : 5.6
29
- env :
30
- - DEPS=locked
31
- - LEGACY_DEPS="phpunit/phpunit"
32
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
33
- - php : 5.6
34
- env :
35
- - DEPS=latest
36
- - php : 7
37
- env :
38
- - DEPS=lowest
39
- - php : 7
40
- env :
41
- - DEPS=locked
42
- - LEGACY_DEPS="phpunit/phpunit"
43
- - php : 7
44
- env :
45
- - DEPS=locked
46
- - LEGACY_DEPS="phpunit/phpunit"
47
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
48
- - php : 7
49
- env :
50
- - DEPS=locked
51
- - LEGACY_DEPS="phpunit/phpunit"
52
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
53
- - php : 7
54
- env :
55
- - DEPS=latest
56
16
- php : 7.1
57
17
env :
58
18
- DEPS=lowest
@@ -61,14 +21,6 @@ matrix:
61
21
- DEPS=locked
62
22
- CS_CHECK=true
63
23
- TEST_COVERAGE=true
64
- - php : 7.1
65
- env :
66
- - DEPS=locked
67
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
68
- - php : 7.1
69
- env :
70
- - DEPS=locked
71
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
72
24
- php : 7.1
73
25
env :
74
26
- DEPS=latest
@@ -78,14 +30,6 @@ matrix:
78
30
- php : 7.2
79
31
env :
80
32
- DEPS=locked
81
- - php : 7.2
82
- env :
83
- - DEPS=locked
84
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
85
- - php : 7.2
86
- env :
87
- - DEPS=locked
88
- - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
89
33
- php : 7.2
90
34
env :
91
35
- DEPS=latest
@@ -95,10 +39,8 @@ before_install:
95
39
96
40
install :
97
41
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
98
- - if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
99
42
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
100
43
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
101
- - if [[ $HELPER_DEPS != '' ]]; then travis_retry composer require $COMPOSER_ARGS --update-with-dependencies $HELPER_DEPS ; fi
102
44
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
103
45
- stty cols 120 && composer show
104
46
0 commit comments