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

Commit 4ae738c

Browse files
committed
Merge branch 'feature/37-psr-11-support' into release-2.0.0
Close #37
2 parents e36727e + a6f9926 commit 4ae738c

6 files changed

+289
-158
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

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

5+
## 2.0.0alpha1 - TBD
6+
7+
### Added
8+
9+
- Nothing.
10+
11+
### Changed
12+
13+
- [#37](https://github.com/zendframework/zend-expressive-zendviewrenderer/pull/37)
14+
adds support for PSR-11. All exception types that previously extended from
15+
container-interop exceptions now extend from PSR-11 exception interfaces,
16+
and factories typehint against the PSR-11 `ContainerInterface`.
17+
18+
### Deprecated
19+
20+
- Nothing.
21+
22+
### Removed
23+
24+
- Nothing.
25+
26+
### Fixed
27+
28+
- Nothing.
29+
530
## 1.5.0 - TBD
631

732
### Added

composer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
},
2222
"require": {
2323
"php": "^5.6 || ^7.0",
24-
"container-interop/container-interop": "^1.2",
24+
"container-interop/container-interop": "^1.2.0",
25+
"psr/container": "^1.0",
2526
"psr/http-message": "^1.0.1",
2627
"zendframework/zend-expressive-helpers": "^1.4 || ^2.2 || ^3.0.1 || ^4.0",
2728
"zendframework/zend-expressive-router": "^1.3.2 || ^2.1",
@@ -34,6 +35,9 @@
3435
"phpunit/phpunit": "^5.7.23 || ^6.4.3",
3536
"zendframework/zend-coding-standard": "~1.0.0"
3637
},
38+
"conflict": {
39+
"container-interop/container-interop": "<1.2.0"
40+
},
3741
"autoload": {
3842
"psr-4": {
3943
"Zend\\Expressive\\ZendView\\": "src/"

0 commit comments

Comments
 (0)