rwillians/simple-di
Composer 安装命令:
composer require rwillians/simple-di
包简介
Simple - a simple PHP7 DI alternative to Pimple
README 文档
README
Simple PHP7 DI container.
Usage
use Rwillians\SimpleDI\Container; use Rwillians\SimpleDI\Contracts\ServiceLocatorInterface; $container = new Container([ 'foo' => 'bar', 'bar' => 'baz', 'baz' => 10, ]); $container->set('awsome.number', function (ServiceLocatorInterface $serviceLocator) { return $serviceLocator->get('baz') + 5; }); echo $container->resolve('awsome.number'); // Outputs 15 (10 + 5)
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-04