Download the PHP package kzykhys/bowl without Composer
On this page you can find all versions of the php package kzykhys/bowl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package bowl
Bowl, Yet Another Dependency Injection Container (PHP5.4+)
- Manage multiple environment (production/development/test ...)
- Manage dependencies between objects
- Perform a Lazy instantiation
- Perform a Factory pattern
- No external files to configure dependencies
- You can avoid Singleton/Factory pattern from your classes
Requirements
- PHP5.4+
Installation
Create or update your composer.json and run composer update
Usage
Define parameters
Define a shared service
Define a factory service
Define a service depending on other services
Using tags to manage a collection of services
Working with environment flag
Real life example
API
Manage environment
configure(string $environment, \Closure $closure)
You can configure Bowl based on environment flags such as production and development.
env(string $environment)
You have to call env()
to apply one of environments.
Service container
share(string $name, \Closure $closure, [array $tags])
Register a shared service
factory(string $name, \Closure $closure, [array $tags])
Register a factory service
extend(string $name, \Closure $closure)
Extend a service definition
get(string $name)
Get an object
getTaggedServices(string $name)
Get services having a tag
reset(string $name)
Re-instantiate the object, even if the service is shared object.
This is unsafe operation
Contributing
Feel free to fork and send a pull request.
License
The MIT License
Author
Kazuyuki Hayashi (@kzykhys)
All versions of bowl with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4
The package kzykhys/bowl contains the following files
Loading the files please wait ....