uma/dic
Composer 安装命令:
composer require uma/dic
包简介
A minimalistic PSR-11 container
README 文档
README
A PSR-11 container focused on human readability and comprehension.
Installation
$ composer require uma/dic:^4.0
Design Goals
Simplicity
A dependency injection container is a rather simple concept and its implementation should be simple, too.
PSR-11 compliance
It must implement the PSR-11 spec, and be usable wherever a PSR-11 container is to be expected.
Setter
It must have a standard way to add dependencies to the container as well as retrieve them. Using a Dependency Injection Container involves these two operations, not just getting them (I'm looking at you PSR-11).
To that end the Container class has a set method and also accepts an optional array of type
string => mixed in its constructor, which is equivalent to calling set($id, $entry) with each of
its key-value pairs.
Moreover, definitions have to be overridable, because definition overrides are a common approach in testing contexts.
$container = new UMA\DIC\Container([ 'host' => 'localhost', 'port' => 8080 ]); $container->set('foo', 'bar'); $container->set('foo', 'baz'); var_dump($container->get('foo')); // 'baz'
Lazy loading
It must be possible to register lazy services. These are services that are not instantiated until they are actually retrieved for the first time.
This library implements lazy services with anonymous functions. Whenever the container is asked for a service that is actually an anonymous function, that function is executed (passing the container itself as the first parameter) and the result is stored under the same id where the anonymous function used to be.
In addition, the container has a resolved method that returns whether a given service is an anonymous
function or not. This can be useful when you need to assert whether a given service has been actually
called (or not) on test code.
$container = new UMA\DIC\Container(); $container->set('dsn', '...'); // A database connection won't be made until/unless // the 'db' service is fetched from the container $container->set('db', static function(Psr\Container\ContainerInterface $c): \PDO { return new \PDO($c->get('dsn')); }); var_dump($container->resolved('db')); // false $pdo = $container->get('db'); var_dump($container->resolved('db')); // true
Providers
When a project involves large numbers of services these can be organized in Provider classes.
These classes implement UMA\DIC\ServiceProvider and receive an instance of the container in
their provide method. They are then expected to register sets of related services in it. This
concept is borrowed from Pimple.
$container = new UMA\DIC\Container(); $container->register(new Project\DIC\Repositories()); $container->register(new Project\DIC\Controllers()); $container->register(new Project\DIC\Routes()); $container->register(new Project\DIC\DebugRoutes());
Service Factories
In a few niche cases it can be desirable to create a new instance of the service every time it's requested from the container.
Like lazy loading, service factories are implemented using anonymous functions.
However, they are registered with the factory method instead of set.
$container = new UMA\DIC\Container(); // Normal lazy loaded service. Will always return the // same object instance after running the Closure once. $container->set('foo', static function(): \stdClass { return new \stdClass(); }); // Factory service. The second argument must be a Closure. // The closure will run every time the service is requested. $container->factory('bar', static function(): \stdClass { return new \stdClass(); }); // foo is always the same object instance. var_dump($container->get('foo') === $container->get('foo')); // true // bar is a different object instance each time it's requested. var_dump($container->get('bar') === $container->get('bar')); // false
uma/dic 适用场景与选型建议
uma/dic 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 23.57k 次下载、GitHub Stars 达 20, 最近一次更新时间为 2018 年 05 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 uma/dic 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 uma/dic 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 23.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 18
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-03