Skip to content

Commit

Permalink
Merge b6aa993 into 64da22c
Browse files Browse the repository at this point in the history
  • Loading branch information
elie29 committed Dec 24, 2018
2 parents 64da22c + b6aa993 commit d37fa30
Show file tree
Hide file tree
Showing 7 changed files with 157 additions and 52 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Expand Up @@ -19,8 +19,6 @@ matrix:
- php: 7.1
env:
- DEPS=locked
- CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.1
env:
- DEPS=latest
Expand All @@ -30,9 +28,20 @@ matrix:
- php: 7.2
env:
- DEPS=locked
- CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.2
env:
- DEPS=latest
- php: 7.3
env:
- DEPS=lowest
- php: 7.3
env:
- DEPS=locked
- php: 7.3
env:
- DEPS=latest

before_install:
- "if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi"
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Expand Up @@ -7,11 +7,12 @@ All notable changes to this project will be documented in this file, in reverse

### Added

- Nothing.
- [#35](https://github.com/elie29/zend-di-config/issues/35) Allow to disbale use autowire.
- [#34](https://github.com/elie29/zend-di-config/issues/34) Add 7.3 support to travis. CS_CHECK needs zend-coding-standard to migrate to 2.0.0

### Changed

- Nothing.
- [#36](https://github.com/elie29/zend-di-config/issues/36) Launch composer update.

### Deprecated

Expand Down
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -39,6 +39,9 @@ $container = $factory(
// Enable compilation
Config::DI_CACHE_PATH => __DIR__, // Folder path

// Disable autowire (enabled by default)
Config::USE_AUTOWIRE => false

// Enable cache
Config::ENABLE_CACHE_DEFINITION => false, // boolean, true if APCu is activated
])
Expand Down

0 comments on commit d37fa30

Please sign in to comment.