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

Commit

Permalink
Merge branch 'feature/conflicts' into develop
Browse files Browse the repository at this point in the history
Close #1
  • Loading branch information
weierophinney committed Jun 13, 2016
2 parents 49f6aea + 887f30f commit 2715878
Show file tree
Hide file tree
Showing 4 changed files with 244 additions and 93 deletions.
13 changes: 2 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,15 @@ env:
matrix:
fast_finish: true
include:
- php: 5.5
env:
- DEPS=lowest
- php: 5.5
env:
- DEPS=locked
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
- PATH="$HOME/.local/bin:$PATH"
- php: 5.5
env:
- DEPS=latest
- php: 5.6
env:
- DEPS=lowest
- php: 5.6
env:
- DEPS=locked
- TEST_COVERAGE=true
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
- PATH="$HOME/.local/bin:$PATH"
- php: 5.6
env:
- DEPS=latest
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ All notable changes to this project will be documented in this file, in reverse

### Removed

- Nothing.
- [#1](https://github.com/zendframework/zend-servicemanager-di/pull/1) removes
support for zend-servicemanager v2. Because this package duplicated several
classes from zend-servicemanager v2, it caused conflicts, which could be
observed when generating an optimized autoloader with Composer.
- [#1](https://github.com/zendframework/zend-servicemanager-di/pull/1) removes
support for PHP 5.5, marking PHP 5.6 as the minimum supported version.

### Fixed

Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@
],
"homepage": "https://github.com/zendframework/zend-servicemanager-di",
"require": {
"php": "^5.5 || ^7.0",
"php": "^5.6 || ^7.0",
"container-interop/container-interop": "^1.1",
"zendframework/zend-di": "^2.6",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
"zendframework/zend-servicemanager": "^3.0.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.3.1",
"phpunit/phpunit": "^4.5"
},
"conflict": {
"zendframework/zend-servicemanager": "<3.0"
},
"autoload": {
"psr-4": {
"Zend\\ServiceManager\\Di\\": "src/"
Expand Down
Loading

0 comments on commit 2715878

Please sign in to comment.