lepre/di

A simple Dependency Injection Container, PSR-11 compliant.

1.0.0-alpha1 2019-03-21 10:14 UTC

This package is auto-updated.

Last update: 2024-05-06 11:33:35 UTC


README

🚧 This project is in early development stage and it could change significantly in the future.

Lepre DI

Test library Coverage Status

A simple Dependency Injection Container, PSR-11 compliant.

Installation

Install the latest version with Composer:

$ composer require lepre/di:dev-master

Requirements

This project works with PHP 7.4 or above.

Basic Usage

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')
    );
});

License

This project is licensed under the MIT License. See the LICENSE file for details.