An easy to use PSR-11 compatible dependency injection container.
This project is open source and available under the MIT License.
- PHP
^8.0
(Tested up to8.4
)
composer require bayfrontmedia/container
use Bayfront\Container;
$container = new Container();
Description:
Set an entry into the container.
Anonymous functions (closures) are called on the first get()
.
Parameters:
$id
(string)$value
(mixed)$overwrite = false
(bool): If false, aContainerException
is thrown if an entry with the same ID already exists. Otherwise, it is overwritten.
Returns:
- (void)
Throws:
Bayfront\Container\ContainerException
Example:
Any type of value can be set in the container.
Services with dependencies can be set using an anonymous function (a \Closure
)
which returns an instance of the class.
The first time a service is requested from the container using get()
,
the anonymous function is called and the result is saved.
On subsequent calls, the same ID always returns the same result.
The anonymous function always calls the container instance as the first argument. This allows you to reference other items from the container, if needed. If you do not need access to the container, the parameter may be omitted from the function signature.
// Set a service with no dependencies
$container->set('Fully\Namespaced\ClassName', function () {
return new ClassName();
});
// Set a service with dependencies
$container->set('Fully\Namespaced\ClassName', function (ContainerInterface $container) {
$dependency = $container->get('Fully\Namespaced\Dependency');
return new ClassName($dependency);
});
// Any type of value can be set, then used as a parameter
$container->set('classname_config', [
// Config array
]);
$container->set('Fully\Namespaced\ClassName', function (ContainerInterface $container) {
$config = $container->get('classname_config');
return new ClassName($config);
});
// Preexisting class instances can be set without using an anonymous function
$class = new ClassName();
$container->set('ClassName', $class);
Description:
Returns an array of all ID's existing in the container.
Parameters:
- None.
Returns:
- (array)
Example:
$entries = $container->getEntries();
Description:
Get an entry from the container by its ID or alias.
Parameters:
$id
(string)
Returns:
- (mixed)
Throws:
Bayfront\Container\NotFoundException
Example:
$service = $container->get('Fully\Namespaced\ClassName');
Description:
Makes and returns a new class instance, automatically injecting dependencies which exist in the container.
Parameters:
$class
(string)$params = []
(array): Additional parameters to pass to the class constructor.
Returns:
- (mixed)
Throws:
Bayfront\Container\ContainerException
Bayfront\Container\NotFoundException
Example:
class ClassName {
protected $service;
protected $config;
public function __construct(AnotherService $service, array $config)
{
$this->service = $service;
$this->config = $config;
}
}
$instance = $container->make('Fully\Namespaced\ClassName', [
'config' => []
]);
Description:
Does entry or alias exist in the container?
(ie: Can an entry be resolved using get()
with this ID?)
Parameters:
$id
(string): ID or alias
Returns:
- (bool)
Example:
if ($container->has('Fully\Namespaced\ClassName')) {
// Do something
}
Description:
Remove entry from container, if existing.
Parameters:
$id
(string)
Returns:
- (void)
Example:
$container->remove('Fully\Namespaced\ClassName');
Description:
Set an alias for a given ID.
Parameters:
$alias
(string)$id
(string)$overwrite = false
(bool): If false, aContainerException
is thrown if an alias with the same name already exists. Otherwise, it will be overwritten.
Returns:
- (void)
Throws:
Bayfront\Container\ContainerException
Example:
$container->setAlias('alias', 'Fully\Namespaced\ClassName');
One benefit of aliases is that they allow you to retrieve entries from the container in a concise, easy to remember manner. In addition, aliases allow you to bind an interface to an implementation.
For example:
$container->setAlias('Fully\Namespaced\Implementation', 'Fully\Namespaced\Interface');
Now, whenever a class requires an implementation of Fully\Namespaced\Interface
,
an instance of Fully\Namespaced\Implementation
will be returned, if existing in the container.
Description:
Returns an array of all existing aliases.
Parameters:
- None.
Returns:
- (array)
Example:
$aliases = $container->getAliases();
Description:
Does alias exist?
Parameters:
$alias
(string)
Returns:
- (bool)
Example:
if ($container->hasAlias('alias')) {
// Do something
}
Description:
Remove alias.
Parameters:
$alias
(string)
Returns:
- (void)
Example:
$container->removeAlias('alias');