This repository was archived by the owner on Jan 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +2742
-44
lines changed Expand file tree Collapse file tree 6 files changed +2742
-44
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ nbproject
9
9
tmp /
10
10
11
11
clover.xml
12
- composer.lock
13
12
coveralls-upload.json
14
13
phpunit.xml
15
14
vendor
Original file line number Diff line number Diff line change @@ -13,31 +13,49 @@ cache:
13
13
14
14
env :
15
15
global :
16
- - SERVICE_MANAGER_VERSION="^3.0.3 "
16
+ - COMPOSER_ARGS="--no-interaction --ignore-platform-reqs "
17
17
18
18
matrix :
19
19
fast_finish : true
20
20
include :
21
+ - php : 5.5
22
+ env :
23
+ - DEPS=lowest
21
24
- php : 5.5
22
25
env :
23
26
- EXECUTE_CS_CHECK=true
27
+ - DEPS=locked
24
28
- php : 5.5
25
29
env :
26
- - SERVICE_MANAGER_VERSION="^2.7.5"
30
+ - DEPS=latest
31
+ - php : 5.6
32
+ env :
33
+ - DEPS=lowest
27
34
- php : 5.6
28
35
env :
29
36
- EXECUTE_TEST_COVERALLS=true
37
+ - DEPS=locked
30
38
- php : 5.6
31
39
env :
32
- - SERVICE_MANAGER_VERSION="^2.7.5"
40
+ - DEPS=lastest
41
+ - php : 7
42
+ env :
43
+ - DEPS=lowest
33
44
- php : 7
45
+ env :
46
+ - DEPS=locked
34
47
- php : 7
35
48
env :
36
- - SERVICE_MANAGER_VERSION="^2.7.5"
49
+ - DEPS=latest
37
50
- php : hhvm
51
+ env :
52
+ - DEPS=lowest
53
+ - php : hhvm
54
+ env :
55
+ - DEPS=locked
38
56
- php : hhvm
39
57
env :
40
- - SERVICE_MANAGER_VERSION="^2.7.5"
58
+ - DEPS=latest
41
59
allow_failures :
42
60
- php : hhvm
43
61
@@ -49,10 +67,12 @@ before_install:
49
67
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
50
68
- composer self-update
51
69
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
52
- - composer require --dev --no-update "zendframework/zend-servicemanager:$SERVICE_MANAGER_VERSION"
53
70
54
71
install :
55
- - travis_retry composer install --no-interaction --ignore-platform-reqs
72
+ - if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
73
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
74
+ - travis_retry composer install $COMPOSER_ARGS
75
+ - composer show --installed
56
76
57
77
script :
58
78
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit --coverage-clover clover.xml ; fi
Original file line number Diff line number Diff line change 28
28
"zendframework/zend-uri" : " ^2.5" ,
29
29
"zendframework/zend-view" : " ^2.6.3" ,
30
30
"fabpot/php-cs-fixer" : " 1.7.*" ,
31
- "phpunit/PHPUnit " : " ~4.0 "
31
+ "phpunit/phpunit " : " ^4.5 "
32
32
},
33
33
"suggest" : {
34
34
"zendframework/zend-config" : " Zend\\ Config component" ,
You can’t perform that action at this time.
0 commit comments