Download the PHP package geekcell/container-facade without Composer
On this page you can find all versions of the php package geekcell/container-facade. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package container-facade
container-facade
A standalone PHP library heavily inspired by Laravel's Facade implementation, which can be used with any PSR-11 compatible dependency injection container (DIC) such as (the ones used by) PHP-DI, Symfony, Pimple, or Slim.
Installation
To use this package, require it with Composer.
Motivation
Although rare, there are situations when you want to obtain a container service without dependency injection. An example would be the AggregateRoot
pattern, which allows dispatching domain events directly from the aggregate, which is usually created directly and not via a DIC. In such a case, a corresponding (static) service facade can provide a comparable convenience as a singleton, but without the inherent disadvantages of the singleton pattern.
Usage
Let's imagine you have a Logger
service inside your DIC of choice that logs a message into a file.
If you want to "facade" this service, just create a class which extends GeekCell\Facade\Facade
.
You'll have to implement the getFacadeAccessor()
method, which returns the identifier for service inside your DIC.
Additionally, you have to "introduce" your DIC to the Facade. How to do this really depends in the framework you're using. In Symfony, a good opportunity to do so is to override the boot()
method within src/Kernel.php
.
To use the facade within any part of your application, just call the service as you would a static method. Behind the scenes, the call is delegated to the actual container service via __callStatic
.
Testing
Although the above looks like an anti pattern, it's actually very testing friendly. During unit testing, you can use the swapMock()
method to literally swap the real service with a Mockery mock.
Hint: You must call the clear()
method to clear out the internally cached mock instance. For PHPUnit, you could use the tearDown()
method to do so.
A Word of Caution
With great power comes great responsibility.
While there are valid use cases, and even though service facades offer a high level of convenience, you should still use them only sparingly and revert to standard dependency injection whenever possible, because all facades interally rely on PHP's __callStatic
magic method, which can make debugging more cumbersome/difficult.
Examples
See the examples
directory for various sample projects with a minimal integration of this package.
Framwork | Sample project |
---|---|
Slim | examples/slim |
Symfony | examples/symfony |