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

Commit

Permalink
Merging develop to master in preparation for 1.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jun 13, 2016
2 parents b8cd25f + 2715878 commit 2377f34
Show file tree
Hide file tree
Showing 4 changed files with 261 additions and 92 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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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

## 1.1.0 - TBD

### Added

- Nothing.

### Deprecated

- Nothing.

### Removed

- [#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

- Nothing.

## 1.0.2 - TBD

### Added
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 2377f34

Please sign in to comment.