-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul M. Jones
committed
Apr 10, 2014
1 parent
095e000
commit 8c7536d
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,27 @@ | ||
Initial 2.0 beta release. | ||
|
||
- _Container_ v1 configurations should still work, with one exception: the `lazyCall()` method has been removed in favor of just `lazy()`. Replace `lazyCall()` with `lazy()` and all should be well. | ||
|
||
- Now compatible with PHP 5.3. | ||
|
||
- Uses PSR-4 autoloading instead of PSR-0. | ||
|
||
- The package now has a series of _Lazy_ classes to represent different types of lazy behaviors, instead of using anonymous functions. | ||
|
||
- No more cloning of _Container_ objects; that was a holdover from when we had sub-containers very early in v1 and never really used. | ||
|
||
- Removed _Forge_ and placed functionality into _Container_. | ||
|
||
- Removed the old _Config_ object; `$params` and `$setter` are now properties on the Container. | ||
|
||
- No more top-level '*' config element. | ||
|
||
- Renamed _Container_ `getServices()` to `getInstances()`. | ||
|
||
- Renamed _Container_ `getDefs()` to `getServices()`. | ||
|
||
- Added _ContainerBuilder_ and new _Config_ object for two-stage configuration. | ||
|
||
- Now honors $setter values on interface configuration; that is, you can configure a setter on an interface, and classes implementing that interface will honor that value unless overridden by a class parent. | ||
|
||
Thanks to HariKT, Damien Patou, Jesse Donat, jvb, and Grummfy for their contributions leading to this release! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters