🚧 This project is in early development stage and it could change significantly in the future.
A simple Dependency Injection Container, PSR-11 compliant.
Install the latest version with Composer:
$ composer require lepre/di:dev-master
This project works with PHP 7.4 or above.
use Lepre\DI\Container;
$container = new Container();
// register a service:
$container->set('my service', function () {
return new MyService();
});
// register a service with dependencies:
$container->set('other service', function (Container $container) {
return new OtherService(
$container->get('my service')
);
});
This project is licensed under the MIT License. See the LICENSE file for details.