composepress/dice
Composer 安装命令:
composer require composepress/dice
包简介
A minimalist Dependency injection container (DIC) for PHP. Please note: This branch is only compatible with PHP5.6. 5.5, 5.4 and 5.3 compatible version is available as a separate branch on github.
README 文档
README
Dice is a minimalist Dependency Injection Container for PHP with a focus on being lightweight and fast as well as requiring as little configuration as possible.
Project Goals
1) To be lightweight and not a huge library with dozens of files (Dice is a single 100 line class) yet support all features (and more) offered by much more complex containers
2) To "just work". Basic functionality should work with zero configuration
3) Where configuration is required, it should be as minimal and reusable as possible as well as easy to use.
4) Speed!
Installation
Just include the lightweight Dice.php in your project and it's usable without any further configuration:
Simple example:
<?php
class A {
public $b;
public function __construct(B $b) {
$this->b = $b;
}
}
class B {
}
require_once 'Dice.php';
$dice = new \Dice\Dice;
$a = $dice->create('A');
var_dump($a->b); //B object
?>
Full Documentation
For complete documentation please see the Dice PHP Dependency Injection container home page
PHP version compatibility
Dice is compatible with PHP5.4 and up, there are archived versions of Dice which supports PHP5.3 however this is no longer maintanied.
Credits
Originally developed by Tom Butler (@TomBZombie), with many thanks to daniel-meister (@daniel-meister), Garrett W. (@garrettw), maxwilms (@maxwilms) for bug fixes, suggestions and improvements.
Updates
29/10/2014
- Based on Issue #15, Dice will now only call closures if they are wrapped in \Dice\Instance. PLEASE NOTE: THIS IS BACKWARDS INCOMPATIBLE .
Previously Dice ran closures that were passed as substitutions, constructParams and when calling methods:
$rule->substitutions['A'] = function() {
return new A;
};
$rule->call[] = ['someMethod', function() {
// '2' will be provided as the first argument when someMethod is called
return 2;
}];
$rule->constructParams[] = function() {
//'abc' will be providedas the first constructor parameter
return 'abc';
};
This behaviour has changed as it makes it impossible to provide a closure as a construct parameter or when calling a method because the closure was always called and executed.
To overcome this, Dice will now only call a closures if they're wrapped in \Dice\Instance:
$rule->substitutions['A'] = new \Dice\Instance(function() {
return new A;
});
$rule->call[] = ['someMethod', new \Dice\Instance(function() {
// '2' will be provided as the first argument when someMethod is called
return 2;
}]);
$rule->constructParams[] = new \Dice\Instance(function() {
//'abc' will be providedas the first constructor parameter
return 'abc';
});
04/09/2014
- Pushed PHP5.6 branch live. This is slightly more efficient using PHP5.6 features. For PHP5.4-PHP5.5 please see the relevant branch. This version will be maintained until PHP5.6 is more widespread.
26/08/2014
- Added PHP5.6 branch. Tidied up code by using PHP5.6 features. This will be moved to master when PHP5.6 is released
28/06/2014
- Greatly improved efficienty. Dice is now the fastest Dependency Injection Container for PHP!
06/06/2014
- Added support for cyclic references ( https://github.com/TomBZombie/Dice/issues/7 ). Please note this is poor design but this fix will stop the infinite loop this design creates.
27/03/2014
- Removed assign() method as this duplicated functionality available using $rule->shared
- Removed $callback argument in $dice->create() as the only real use for this feature can be better achieved using $rule->shareInstances
- Tidied up code, removing unused/undocumented features. Dice is now even more lightweight and faster.
- Fixed a bug where when using $rule->call it would use the substitution rules from the constructor on each method called
- Updated Dice documentation to use shorthand array syntax
01/03/2014
- Added test cases for the Xml Loader and Loader Callback classes
- Added a JSON loader + test case
- Added all test cases to a test suite
- Moved to PHP5.4 array syntax. A PHP5.3 compatible version is now available in the PHP5.3 branch.
- Fixed an issue where using named instances would trigger the autoloader with an invalid class name every time a class was created
28/02/2014
- Added basic namespace support. Documentation update will follow shortly. Also moved the XML loader into its own file, you'll need to include it separately if you're using it.
- Please note: CHANGES ARE NOT BACKWARDS COMPATIBLE. However they are easily fixed by doing the following find/replaces:
new Dice => new \Dice\Dice
new DiceInstance => new \Dice\Instance
new DiceRule => new \Dice\Rule
composepress/dice 适用场景与选型建议
composepress/dice 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.9k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 03 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「dependency injection」 「di」 「dependency injection container」 「ioc」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 composepress/dice 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 composepress/dice 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 composepress/dice 相关的其它包
同方向 / 同关键字的高下载量 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
统计信息
- 总下载量: 1.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2018-03-02