mrclay/props-dic
Composer 安装命令:
composer require mrclay/props-dic
包简介
Props is a simple DI container that allows retrieving values via custom property and method names
README 文档
README
Most Dependency Injection containers have fetch operations, like $di->get('foo') or $di['foo'], which don't allow your IDE to know the type of value received, nor offer you any help remembering/typing key names.
With Props, you access values via custom property reads $di->foo or method calls $di->new_foo(). This allows you to subclass the container and provide @property and/or @method PHPDoc declarations, giving your IDE and static analysis tools valuable runtime type information.
An example will help:
/** * @property-read Foo $foo * @method Foo new_foo() */ class MyContainer extends \Props\Container { public function __construct() { $this->foo = function (MyContainer $c) { return new Foo(); }; } } $c = new MyContainer(); $foo1 = $c->foo; // your IDE knows this is a Foo instance $foo2 = $c->new_foo(); // A fresh Foo instance $foo3 = $c->foo; // same as $foo1
Here's a more complex example:
/** * @property-read string $style * @property-read Dough $dough * @property-read Cheese $cheese * @property-read Pizza $pizza * @method Slice new_slice() */ class PizzaServices extends \Props\Container { public function __construct() { $this->style = 'deluxe'; $this->dough = function (PizzaServices $c) { return new Dough(); }; $this->setFactory('cheese', 'CheeseFactory::getCheese'); $this->pizza = function (PizzaServices $c) { $pizza = new Pizza($c->style, $c->cheese); $pizza->setDough($c->dough); return $pizza; }; $this->slice = function (PizzaServices $c) { return $c->pizza->getSlice(); }; } } $c = new PizzaServices; $c->pizza; // This first resolves and caches the cheese and dough. $c->pizza; // The same pizza instance as above (no factories called).
Since "slice" has a factory function set, we can call new_slice() to get fresh instances from it:
$c->new_slice(); // a new Slice instance $c->new_slice(); // a new Slice instance
Your IDE sees the container as a plain old class of typed properties, allowing it to offer suggestions of available properties, autocomplete their names, and autocomplete the objects returned. It gives you much more power when providing static analysis and automated refactoring.
Compatibility
Props\Container implements ContainerInterface.
Overview
You can specify dependencies via direct setting:
$c->aaa = new AAA();
You can specify factories by setting a Closure, or by using the setFactory() method. These are functionally equivalent:
$c->bbb = function ($c) { return BBB::factory($c); }; $c->setFactory('bbb', 'BBB::factory');
Resolved dependencies are cached, returning the same instance:
$c->bbb === $c->bbb; // true
Using factories
If you don't want a cached value, use new_PROPERTYNAME() to always fetch a fresh instance:
$c->new_bbb() === $c->new_bbb(); // false
Regular value sets do not store a factory, so you may want to check hasFactory() before you use new_PROPERTYNAME():
// store a value $c->ccc = new CCC(); $c->hasFactory('ccc'); // false // store a factory $c->ccc = function () { return new CCC(); }; $c->hasFactory('ccc'); // true
You can also get access to a set factory:
$callable = $c->getFactory('ccc');
Extending a factory
Use extend to have the return value of a factory filtered before it's returned:
$c->foo = function ($c) { return new Foo($c->bar); }; $c->extend('foo', function ($value, Container $c) { return array($value, $c->bing); }); $c->foo; // [Foo, "bing"] $c->new_foo(); // re-call original foo factory and re-extend output (`bar` and `bing` will be re-read)
Pimple with property access
If you're used to the Pimple API, try Props\Pimple, which just adds property access. With that you can add @property declarations and get the same typing benefits.
You can see an example that's similar to the Pimple docs.
Requirements
- PHP 8.1
License (MIT)
See LICENSE.
mrclay/props-dic 适用场景与选型建议
mrclay/props-dic 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.72M 次下载、GitHub Stars 达 35, 最近一次更新时间为 2013 年 03 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「dependency injection」 「container」 「di」 「di container」 「dependency injection container」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mrclay/props-dic 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mrclay/props-dic 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mrclay/props-dic 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A fast and intuitive dependency injection container.
Dependency injection container for the Monolith framework.
The PSR-11 container bridges
Http Microframework for Hack
PHP Dependency Injection Container
统计信息
- 总下载量: 12.72M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 35
- 点击次数: 43
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-03-23