Download the PHP package selvinortiz/zit without Composer
On this page you can find all versions of the php package selvinortiz/zit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download selvinortiz/zit
More information about selvinortiz/zit
Files in selvinortiz/zit
Package zit
Short Description Tiny dependency management library for PHP
License MIT
Homepage https://github.com/selvinortiz/zit
Informations about the package zit
Description
Zit is a tiny dependency injection library inspired by Pimple and written by Selvin Ortiz
Requirements
- PHP 5.4+
- Composer and selvinortiz/zit
Install
Test
Usage
Dependency management is a difficult topic to explain but essentially, Zit lets you stuff things into it that you can pop out later throughout your application.
You can also use Zit without making a new instance, the static way if you will.
Which approach should you use? Whatever you prefer. If you aren't sure, you can use the static way unless you need to create your own instance that extends Zit
Note
Whether you bind(), stash(), or extend() it. You can pop it out using:
API
pop($id, $args = array())
pop() lets you pop a dependency out of the container
bind($id, callable $serviceGenerator)
bind() lets you register a service generator. Useful when you need to instantiate a service that depends on a config object for example. Services get generated only once on first call.
stash($id, $service)
stash() lets you stash anything inside the container. You get out what you put in, which is useful if you need to stash a bunch of stuff that needs to be accessible throughout your whole application.
extend($id, $callback)
extend() gives you the ability to add new functionality to the container
Contribute
Zit wants to be friendly to first time contributors. Just follow the steps below and if you have questions along the way, please reach out.
- Fork it!
- Create your bugfix or feature branch
- Commit and push your changes
- Submit a pull request
License
Zit is open source software licensed under the MIT License