2017 © Pedro Peláez
 

library dice

A minimalist Dependency injection container (DIC) for PHP. Please note: 3.0+ is only compatible with PHP 7.0. The 2.0 branch is compatbile with PHP 5.6.

image

level-2/dice

A minimalist Dependency injection container (DIC) for PHP. Please note: 3.0+ is only compatible with PHP 7.0. The 2.0 branch is compatbile with PHP 5.6.

  • Wednesday, July 18, 2018
  • by TomBZombie
  • Repository
  • 31 Watchers
  • 326 Stars
  • 140,250 Installations
  • PHP
  • 13 Dependents
  • 0 Suggesters
  • 50 Forks
  • 12 Open issues
  • 16 Versions
  • 5 % Grown

The README.md

Dice PHP Dependency Injection Container

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., (*1)

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)

2) To "just work". Basic functionality should work with zero configuration, (*3)

3) Where configuration is required, it should be as minimal and reusable as possible as well as easy to use., (*4)

4) Speed! (See the section on performance), (*5)

Installation

Just include the lightweight Dice.php in your project and it's usable without any further configuration:, (*6)

Simple example:, (*7)

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, (*8)

PHP version compatibility

Dice is compatible with PHP 7.0 and up, there are archived versions of Dice which support PHP 5.6 however this is no longer maintanied., (*9)

Performance

Dice uses reflection which is often wrongly labelled "slow". Reflection is considerably faster than loading and parsing a configuration file. There are a set of benchmarks here and here (To download the benchmark tool yourself see this repository) and Dice is faster than the others in most cases., (*10)

In the real world test (test 6) Dice is neck-and-neck with Pimple (which requires writing an awful lot of configuration code) and although Symfony\DependencyInjection is faster at creating objects, it has a larger overhead and you need to create over 500 objects on each page load until it becomes faster than Dice. The same is true of Phalcon, the overhead of loading the Phalcon extension means that unless you're creating well over a thousand objects per HTTP request, the overhead is not worthwhile., (*11)

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., (*12)

Updates

15/11/2018 4.0 Release - Backwards incompatible

Dice is now immutable and has better support for other immutable objects., (*13)

New Features, (*14)

1. Dice is Immutable

This avoids issues surrounding mutability where a Dice instance is passed around the application and reconfigured. The only difference is that addRules and addRule return a new Dice instance with the updated rules rather than changing the state of the existing instance., (*15)


// Pre-4.0 code: $dice->addRule('PDO', ['shared' => true]); $db = $dice->create('PDO'); // 4.0 code: $dice = $dice->addRule('PDO', ['shared' => true]); $db = $dice->create('PDO');

From a practical perspective in most cases just put $dice = in front of any $dice->addRule() call and it will work as before., (*16)

2. Support for Object Method Chaining

One feature some immutable objects have is they offer object chaining., (*17)

Consider the following Object:, (*18)


$httpRequest = new HTTPRequest(); $httpRequest = $httpRequest->url('http://example.org')->method('POST')->postdata('foo=bar');

It was not possible for Dice to consturuct the configured object in previous versions. As of 4.0 Dice supports chaining method call using the call rule and the Dice::CHAIN_CALL constant:, (*19)

$dice = $dice->addRule('HTTPRequest',
                ['call' => [
                    ['url', ['http://example.org'], Dice::CHAIN_CALL],
                    ['method', ['POST'], Dice::CHAIN_CALL ],
                    ['postdata', ['foo=bar'], Dice::CHAIN_CALL]
                 ]
                ]
);

Dice will replace the HTTPRequest object with the result of the chained call. This is also useful for factories:, (*20)

$dice = $dice->addRule('MyDatabase',
                [
                    'instanceOf' => 'DatabaseFactory',
                    'call' => [
                        ['get', ['Database'], Dice::CHAIN_CALL]
                 ]
                ]
);

$database = $dice->create('MyDatabase');
//Equivalent of:

$factory = new DatabaseFactory();
$database = $factory->get('Database');

06/03/2018 3.0 Release - Backwards incompatible

New Features, (*21)

1. The JSON loader has been removed in favour of a new addRules method.

$dice->addRules([
    '\PDO' => [
        'shared' => true
    ],
    'Framework\Router' => [
        'constructParams' => ['Foo', 'Bar']
    ]
]);

The purpose of this addition is to make the JSON loader redundant. Loading of rules from a JSON file can easily be achieved with the code:, (*22)

$dice->addRules(json_decode(file_get_contents('rules.json')));

2. Better JSON file support: constants and superglobals

In order to improve support for rules being defined in external JSON files, constants and superglobals can now be passed into objects created by Dice., (*23)

For example, passing the $_SERVER superglobal into a router instance and calling PDO's setAttribute with PDO::ATTR_ERRMODE and PDO::ERRMODE_EXCEPTION can be achieved like this in a JSON file:, (*24)

rules.json, (*25)

{
    "Router": {
        "constructParams": [
            {"Dice::GLOBAL": "_SERVER"}
        ]
    },
    "PDO": {
        "shared": true,
        "constructParams": [
            "mysql:dbname=testdb;host=127.0.0.1",
            "dbuser",
            "dbpass"
        ],
        "call": [
                    [
                        "setAttribute",
                        [
                            {"Dice::CONSTANT": "PDO::ATTR_ERRMODE"},
                            {"Dice::CONSTANT": "PDO::ERRMODE_EXCEPTION"}
                        ]
                    ]
        ]
    }
}
$dice->addRules(json_decode(file_get_contents('rules.json')));

Backwards incompatible changes, (*26)

  1. Dice 3.0 requires PHP 7.0 or above, PHP 5.6 is no longer supported., (*27)

  2. Dice no longer supports 'instance' keys to signify instances. For example:, (*28)

$dice->addRule('ClassName', [
    'constructParams' => ['instance' => '$NamedPDOInstance']
]);

As noted in issue #125 this made it impossible to pass an array to a constructor if the array had a key 'instance'. Instead, the new \Dice\Dice::INSTANCE constant should be used:, (*29)

$dice->addRule('ClassName', [
    'constructParams' => [\Dice\Dice::INSTANCE => '$NamedPDOInstance']
]);

to make the constant shorter to type out, you can use \Dice\Dice; and reference Dice::INSTANCE, (*30)

10/06/2016, (*31)

** Backwards incompatible change **, (*32)

Based on Issue 110 named instances using instanceOf will now inherit the rules applied to the class they are instances of:, (*33)


$rule = []; $rule['shared'] = true; $dice->addRule('MyClass', $rule); $rule = []; $rule['instanceOf'] = 'MyClass'; $rule['constructParams'] = ['Foo', 'Bar']; $dice->addRule('$MyNamedInstance', $rule);

$dice->create('$MyNamedInstance') will now create a class following the rules applied to both MyClass and $MyNamedInstance so the instance will be shared., (*34)

Previously only the rules applied to the named instance would be used., (*35)

To restore the old behaviour, set inherit to false on the named instance:, (*36)

$rule = [];
$rule['shared'] = true;

$dice->addRule('MyClass', $rule);

$rule = [];
$rule['instanceOf'] = 'MyClass';
$rule['constructParams'] = ['Foo', 'Bar'];


//Prevent the named instance inheriting rules from the class named in `instanceOf`:
$rule['inherit'] = false;

$dice->addRule('$MyNamedInstance', $rule);

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 **., (*37)

Previously Dice ran closures that were passed as substitutions, constructParams and when calling methods:, (*38)


$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., (*39)

To overcome this, Dice will now only call a closures if they're wrapped in \Dice\Instance:, (*40)

$rule->substitutions['A'] = ['instance' => function() {
    return new A;
}];

$rule->call[] = ['someMethod', ['instance' => function() {
// '2' will be provided as the first argument when someMethod is called
return 2;
}]]);

$rule->constructParams[] =  ['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., (*41)

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, (*42)

28/06/2014 * Greatly improved efficienty. Dice is now the fastest Dependency Injection Container for PHP!, (*43)

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., (*44)

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, (*45)

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, (*46)

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:, (*47)

    new Dice => new \Dice\Dice
    new DiceInstance => new \Dice\Instance
    new DiceRule => new \Dice\Rule

The Versions

18/07 2018

dev-master

9999999-dev http://r.je/dice.html

A minimalist Dependency injection container (DIC) for PHP. Please note: 3.0+ is only compatible with PHP 7.0. The 2.0 branch is compatbile with PHP 5.6.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=7.0.0

 

The Development Requires

by Tom Butler

dependency injection ioc di dependency injection container

08/04 2018

3.0.0

3.0.0.0 http://r.je/dice.html

A minimalist Dependency injection container (DIC) for PHP. Please note: 3.0+ is only compatible with PHP 7.0. The 2.0 branch is compatbile with PHP 5.6.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=7.0.0

 

The Development Requires

by Tom Butler

dependency injection ioc di dependency injection container

06/03 2018

dev-3.0-Dev-Rebase

dev-3.0-Dev-Rebase http://r.je/dice.html

A minimalist Dependency injection container (DIC) for PHP. Please note: 3.0+ is only compatible with PHP 7.0. The 2.0 branch is compatbile with PHP 5.6.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=7.0.0

 

The Development Requires

by Tom Butler

dependency injection ioc di dependency injection container

05/03 2018

2.0.x-dev

2.0.9999999.9999999-dev http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

The Development Requires

by Tom Butler

dependency injection ioc di dependency injection container

12/01 2018

2.0.4

2.0.4.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

The Development Requires

by Tom Butler

dependency injection ioc di dependency injection container

01/05 2017

dev-3.0-Dev

dev-3.0-Dev http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=7.0.0

 

by Tom Butler

dependency injection ioc di dependency injection container

13/12 2015

2.0.3

2.0.3.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

30/11 2015

dev-v2.0-PHP5.4-5.5

dev-v2.0-PHP5.4-5.5 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.4.0

 

by Tom Butler

dependency injection ioc di dependency injection container

13/10 2015

2.0.2

2.0.2.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

08/09 2015

1.0.x-dev

1.0.9999999.9999999-dev http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

08/09 2015

dev-v1.0-PHP5.4-5.5

dev-v1.0-PHP5.4-5.5 http://r.je/dice.html

A minimalist Dependency injection container (DIC) for PHP. Please note: This branch is only compatible with PHP5.4+. A 5.3 compatible version is available as a separate branch on github.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.4.0

 

by Tom Butler

dependency injection ioc di dependency injection container

28/08 2015

dev-PHP5.3

dev-PHP5.3 http://r.je/dice.html

A minimalist Dependency injection container (DIC) for PHP.

  Sources   Download

BSD-2-Clause

The Requires

  • php 5.3.*

 

by Tom Butler

dependency injection ioc di dependency injection container

12/08 2015

v2.0.1

2.0.1.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

05/08 2015

2.0

2.0.0.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

13/05 2015

dev-v2.0-Transitional

dev-v2.0-Transitional http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container

06/05 2015

1.4.1

1.4.1.0 http://r.je/dice.html

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.

  Sources   Download

BSD-2-Clause

The Requires

  • php >=5.6.0

 

by Tom Butler

dependency injection ioc di dependency injection container