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 +226
-182
lines changed Expand file tree Collapse file tree 4 files changed +226
-182
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,14 @@ matrix:
23
23
env :
24
24
- DEPS=locked
25
25
- TEST_COVERAGE=true
26
+ - php : 5.6
27
+ env :
28
+ - DEPS=locked
29
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
30
+ - php : 5.6
31
+ env :
32
+ - DEPS=locked
33
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
26
34
- php : 5.6
27
35
env :
28
36
- DEPS=latest
@@ -33,6 +41,14 @@ matrix:
33
41
env :
34
42
- DEPS=locked
35
43
- CS_CHECK=true
44
+ - php : 7
45
+ env :
46
+ - DEPS=locked
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
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
36
52
- php : 7
37
53
env :
38
54
- DEPS=latest
@@ -42,6 +58,14 @@ matrix:
42
58
- php : 7.1
43
59
env :
44
60
- DEPS=locked
61
+ - php : 7.1
62
+ env :
63
+ - DEPS=locked
64
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
65
+ - php : 7.1
66
+ env :
67
+ - DEPS=locked
68
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
45
69
- php : 7.1
46
70
env :
47
71
- DEPS=latest
@@ -51,6 +75,14 @@ matrix:
51
75
- php : hhvm
52
76
env :
53
77
- DEPS=locked
78
+ - php : hhvm
79
+ env :
80
+ - DEPS=locked
81
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^2.2 zendframework/zend-expressive-router:^1.3.2"
82
+ - php : hhvm
83
+ env :
84
+ - DEPS=locked
85
+ - HELPER_DEPS="zendframework/zend-expressive-helpers:^3.0.1"
54
86
- php : hhvm
55
87
env :
56
88
- DEPS=latest
@@ -66,6 +98,7 @@ install:
66
98
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
67
99
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
68
100
- 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
69
102
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
70
103
- composer show
71
104
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
+ ## 1.4.0 - TBD
6
+
7
+ ### Added
8
+
9
+ - [ #36 ] ( https://github.com/zendframework/zend-expressive-zendviewrenderer/pull/36 )
10
+ adds support for zend-expressive-helpers 4.0.
11
+
12
+ ### Deprecated
13
+
14
+ - Nothing.
15
+
16
+ ### Removed
17
+
18
+ - Nothing.
19
+
20
+ ### Fixed
21
+
22
+ - Nothing.
23
+
5
24
## 1.3.1 - TBD
6
25
7
26
### Added
Original file line number Diff line number Diff line change 21
21
"php" : " ^5.6 || ^7.0" ,
22
22
"container-interop/container-interop" : " ^1.2" ,
23
23
"psr/http-message" : " ^1.0.1" ,
24
- "zendframework/zend-expressive-helpers" : " ^1.4 || ^2.2 || ^3.0.1" ,
24
+ "zendframework/zend-expressive-helpers" : " ^1.4 || ^2.2 || ^3.0.1 || ^4.0 " ,
25
25
"zendframework/zend-expressive-router" : " ^1.3.2 || ^2.1" ,
26
26
"zendframework/zend-expressive-template" : " ^1.0.4" ,
27
27
"zendframework/zend-servicemanager" : " ^2.7.8 || ^3.3" ,
You can’t perform that action at this time.
0 commit comments