Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit 0997d16

Browse files
committed
Merge branch 'feature/helpers-4.0' into develop
Close #36
2 parents 22bf282 + a62209d commit 0997d16

File tree

4 files changed

+209
-183
lines changed

4 files changed

+209
-183
lines changed

.travis.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ matrix:
2323
env:
2424
- DEPS=locked
2525
- 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"
2634
- php: 5.6
2735
env:
2836
- DEPS=latest
@@ -33,6 +41,14 @@ matrix:
3341
env:
3442
- DEPS=locked
3543
- 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"
3652
- php: 7
3753
env:
3854
- DEPS=latest
@@ -42,6 +58,14 @@ matrix:
4258
- php: 7.1
4359
env:
4460
- 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"
4569
- php: 7.1
4670
env:
4771
- DEPS=latest
@@ -51,6 +75,14 @@ matrix:
5175
- php: hhvm
5276
env:
5377
- 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"
5486
- php: hhvm
5587
env:
5688
- DEPS=latest
@@ -66,6 +98,7 @@ install:
6698
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
6799
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
68100
- 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
69102
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
70103
- composer show
71104

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ All notable changes to this project will be documented in this file, in reverse
66

77
### Added
88

9-
- Nothing.
9+
- [#36](https://github.com/zendframework/zend-expressive-zendviewrenderer/pull/36)
10+
adds support for zend-expressive-helpers 4.0.
1011

1112
### Deprecated
1213

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"php": "^5.6 || ^7.0",
2222
"container-interop/container-interop": "^1.2",
2323
"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",
2525
"zendframework/zend-expressive-router": "^1.3.2 || ^2.1",
2626
"zendframework/zend-expressive-template": "^1.0.4",
2727
"zendframework/zend-servicemanager": "^2.7.8 || ^3.3",

0 commit comments

Comments
 (0)