This repository was archived by the owner on Apr 28, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +1882
-12
lines changed Expand file tree Collapse file tree 5 files changed +1882
-12
lines changed Original file line number Diff line number Diff line change 11
11
zf-mkdoc-theme /
12
12
13
13
clover.xml
14
- composer.lock
15
14
coveralls-upload.json
16
15
phpunit.xml
17
16
vendor
Original file line number Diff line number Diff line change @@ -15,25 +15,47 @@ cache:
15
15
16
16
env :
17
17
global :
18
- - SITE_URL : https://zendframework.github.io/zend-xmlrpc
19
- - GH_USER_NAME : " Matthew Weier O'Phinney"
20
- -
GH_USER_EMAIL :
[email protected]
21
- - GH_REF : github.com/zendframework/zend-xmlrpc.git
18
+ - COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
19
+ - SITE_URL=https://zendframework.github.io/zend-xmlrpc
20
+ - GH_USER_NAME="Matthew Weier O'Phinney"
21
+
22
+ - GH_REF=github.com/zendframework/zend-xmlrpc.git
22
23
- secure : " tE/9gTe0U+QN1mlCC7Wr70RaOHn3Mtn8ZZTjN0LuhDhXTe3Hs197DNNv3vxNSXRavIRuLi1mIEiEu1uzV4qlnUx01Uj+G+jCshYLrZIQ8TxVJEXB1r1tFrNosg4s1hpxDQn7O5O0VzOEB8G01PobCUmPNTDPGi77xj8HyE+SCLQPnnNPwp4gJtifS+bBOmAe//A0aOA14ArzJLi4xfEKCC2yoSUawob8xX9LbMfLwq8/IEPYtLqN9rvk5qpc2/uhb7Hrqk7Nq8Xt6Gv2ixgDkfYup7BswAamtT5M4m02mXBneYqC2OYDeuStv8kkaIIjTCKxOOPzseRgHJgXLxnRNbJjG7fLaTpWYtl4ZqevGZlp+GrRGHMsQO4wxXMAM0U476nLzNlQDw3xEH9dKpf/QRM1bsP2b45fxHRklRjek+KXIF0bE7q5+jkOeHzg/z05CF6EMSjZuuI+qoUrdZub/R6pTxwhqBzDzUxZjTY3gj5+qlTlvn/B18tCXNsHjsFX75Boy1ST45ai/6ow1veyaWk9H/wIJEqEk54gWDsonpwpGgQjQcoZ58QRi9SKxv0hBFB+No+k2fFnQc0pvTJKa/3Pk+k2I77BvaqtZxC6eqXHKOiDvaR/ywBAIPLBEHL7Fm4Xeu80voNAPlcRV+5qD7ptPaV6gxqeNm1rM81SZHA="
23
24
24
25
matrix :
25
26
fast_finish : true
26
27
include :
27
- - php : 5.5
28
+ - php : 5.6
28
29
env :
29
- - CS_CHECK=true
30
+ - DEPS=lowest
30
31
- php : 5.6
31
32
env :
33
+ - DEPS=locked
32
34
- TEST_COVERAGE=true
33
35
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
34
36
- PATH="$HOME/.local/bin:$PATH"
37
+ - php : 5.6
38
+ env :
39
+ - DEPS=latest
35
40
- php : 7
41
+ env :
42
+ - DEPS=lowest
43
+ - php : 7
44
+ env :
45
+ - DEPS=locked
46
+ - CS_CHECK=true
47
+ - php : 7
48
+ env :
49
+ - DEPS=latest
50
+ - php : hhvm
51
+ env :
52
+ - DEPS=lowest
36
53
- php : hhvm
54
+ env :
55
+ - DEPS=locked
56
+ - php : hhvm
57
+ env :
58
+ - DEPS=latest
37
59
allow_failures :
38
60
- php : hhvm
39
61
@@ -46,8 +68,11 @@ before_install:
46
68
- travis_retry composer self-update
47
69
48
70
install :
49
- - if [[ $TEST_COVERAGE == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
50
- - travis_retry composer install --no-interaction --ignore-platform-reqs
71
+ - if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
72
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
73
+ - if [[ $TEST_COVERAGE == 'true' ]]; then composer require --dev $COMPOSER_ARGS satooshi/php-coveralls:^1.0 ; fi
74
+ - travis_retry composer install $COMPOSER_ARGS
75
+ - composer show
51
76
52
77
script :
53
78
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; fi
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file, in reverse chronological order by release.
4
4
5
+ ## 2.6.0 - TBD
6
+
7
+ ### Added
8
+
9
+ - [ #19 ] ( https://github.com/zendframework/zend-xmlrpc/pull/19 ) adds support for
10
+ zend-math v3.
11
+
12
+ ### Deprecated
13
+
14
+ - Nothing.
15
+
16
+ ### Removed
17
+
18
+ - Nothing.
19
+
20
+ ### Fixed
21
+
22
+ - Nothing.
23
+
5
24
## 2.5.3 - TBD
6
25
7
26
### Added
Original file line number Diff line number Diff line change 21
21
]
22
22
},
23
23
"require" : {
24
- "php" : " ^5.5 || ^7.0" ,
24
+ "php" : " ^5.6 || ^7.0" ,
25
25
"zendframework/zend-http" : " ^2.5.4" ,
26
- "zendframework/zend-math" : " ^2.7" ,
27
- "zendframework/zend-server" : " ^2.6.1 " ,
26
+ "zendframework/zend-math" : " ^2.7 || ^3.0 " ,
27
+ "zendframework/zend-server" : " ^2.7 " ,
28
28
"zendframework/zend-stdlib" : " ^2.7 || ^3.0" ,
29
29
"zendframework/zendxml" : " ^1.0.2"
30
30
},
You can’t perform that action at this time.
0 commit comments