依赖注入容器的核心

dev-master 2016-12-25 08:12 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:58:49 UTC


README

Essential PHP-DI 是一个用于 PHP 的依赖注入容器

要求

Essential PHP-DI 需要 PHP 版本 7.0 或更高版本

安装

$ composer require essential-php/php-di "~1.0"

或者,您也可以在您的 composer.json 文件中包含对 essential-php/php-di 的依赖。例如

{
    "require": {
        "essential-php/php-di": "^1.0"
    }
}

用法

use Essential\Di\Container;

$container = new Container();
$container->add('foo.bar', FooBar::class)
$fooBar = $container->get('foo.bar')

问题

可以通过 GitHub 问题跟踪器 提交错误报告。

许可证

MIT 许可证。有关信息,请参阅 LICENSE