strident / phimple
Simple dependency injection container, inspired by Pimple.
2.0.3
2015-02-10 15:51 UTC
Requires
- php: >=5.4
Requires (Dev)
- codeclimate/php-test-reporter: ~0.1
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2024-11-05 03:00:10 UTC
README
Phimple is an extremely lightweight dependency injection container, heavily inspired by Pimple.
##Installation
Phimple is available as a Composer package. It can be included in your project by running the following command:
$ composer require strident/phimple ~2.0
##Usage
Phimple is easy to get going with (just like Pimple really):
use Phimple\Container; $container = new Container();
Phimple differs from Pimple internally in some ways, and also in it's API. The API change was the main reason I decided to develop Phimple. There are 2 concepts; services and parameters.