dmitrivereshchagin / yii2-psr-container

Yii 2 的 PSR-11 容器适配器

v1.0.0 2017-03-14 21:02 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:37:02 UTC


README

Yii 2 的 PSR-11 容器适配器。

安装

% composer require dmitrivereshchagin/yii2-psr-container

使用方法

\Yii::$container->setSingleton(
    'Psr\Container\ContainerInterface',
    function ($container) {
        return new \yii\psr\container\ContainerAdapter($container);
    }
);

测试

% composer test