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

Commit f94ab0e

Browse files
committed
Merge branch 'hotfix/update-deps'
Close #22
2 parents f981a27 + fb59afd commit f94ab0e

File tree

8 files changed

+1747
-19
lines changed

8 files changed

+1747
-19
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
vendor/
2-
composer.lock

.travis.yml

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,65 @@ cache:
77
- $HOME/.composer/cache
88
- vendor
99

10+
env:
11+
global:
12+
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
13+
1014
matrix:
1115
fast_finish: true
1216
include:
1317
- php: 5.5
18+
env:
19+
- DEPS=lowest
20+
- php: 5.5
21+
env:
22+
- DEPS=locked
23+
- php: 5.5
24+
env:
25+
- DEPS=latest
1426
- php: 5.6
1527
env:
16-
- EXECUTE_CS_CHECK=true
28+
- DEPS=lowest
29+
- php: 5.6
30+
env:
31+
- DEPS=locked
32+
- php: 5.6
33+
env:
34+
- DEPS=latest
1735
- php: 7
18-
- php: hhvm
36+
env:
37+
- DEPS=lowest
38+
- php: 7
39+
env:
40+
- DEPS=locked
41+
- CHECK_CS=true
42+
- php: 7
43+
env:
44+
- DEPS=latest
45+
- php: hhvm
46+
env:
47+
- DEPS=lowest
48+
- php: hhvm
49+
env:
50+
- DEPS=locked
51+
- php: hhvm
52+
env:
53+
- DEPS=latest
1954
allow_failures:
2055
- php: hhvm
2156

2257
before_install:
23-
- composer self-update
58+
- travis_retry composer self-update
2459

2560
install:
26-
- travis_retry composer install --no-interaction --ignore-platform-reqs --prefer-source
27-
- composer info -i
61+
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
62+
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
63+
- travis_retry composer install $COMPOSER_ARGS
64+
- composer info
2865

2966
script:
3067
- composer test
31-
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
68+
- if [[ $CHECK_CS == 'true' ]]; then composer cs ; fi
3269

3370
notifications:
3471
email: true

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 1.0.2 - TBD
5+
## 1.1.0 - 2016-03-23
66

77
### Added
88

9-
- Nothing.
9+
- [#22](https://github.com/zendframework/zend-expressive-zendviewrenderer/pull/22)
10+
adds support for the zend-eventmanager and zend-servicemanager v3 releases.
1011

1112
### Deprecated
1213

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"psr/http-message": "^1.0",
2424
"zendframework/zend-expressive-helpers": "^1.1 || ^2.0",
2525
"zendframework/zend-expressive-template": "^1.0.1",
26-
"zendframework/zend-filter": "^2.5",
27-
"zendframework/zend-i18n": "^2.5",
28-
"zendframework/zend-servicemanager": "^2.5",
29-
"zendframework/zend-view": "^2.5"
26+
"zendframework/zend-filter": "^2.6.1",
27+
"zendframework/zend-i18n": "^2.6",
28+
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
29+
"zendframework/zend-view": "^2.6.5"
3030
},
3131
"require-dev": {
3232
"phpunit/phpunit": "^4.7",

0 commit comments

Comments
 (0)