Lightweight library that discovers available PSR-11 Container implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.
This package is part of the PSR Discovery utility suite, which also supports PSR-18 HTTP Clients, PSR-17 HTTP Factories, PSR-14 Event Dispatcher, PSR-6 Caches and PSR-3 Logs.
This is largely intended for inclusion in libraries like SDKs that wish to support PSR-11 Containers without requiring hard dependencies on specific implementations or demanding extra configuration by users.
- Requirements
- Implementations
- Installation
- Usage
- Handling Failures
- Exceptions
- Singletons
- Mocking Priority
- Preferring an Implementation
- Using a Specific Implementation
- PHP 8.1+
- Composer 2.0+
Successful discovery requires the presence of a compatible implementation in the host application. This library does not install any implementations for you.
The following psr/container-implementation
implementations are discovered and instantiated automatically:
- aura/di ^4.0
- contributte/psr11-container-interface ^0.4
- illuminate/container ^8.0 | ^9.0 | ^10.0
- joomla/di ^1.5 | ^2.0
- laminas/laminas-servicemanager ^3.3
- laravel/framework ^7.0 | ^8.0 | ^9.0 | ^10.0
- league/container ^3.0 | ^4.0
- php-di/php-di ^5.4.2 | ^6.0 | ^7.0
- silverstripe/framework ^4.0
- symfony/dependency-injection ^3.3 | ^4.0 | ^5.0 | ^6.0 | ^7.0
- symfony/symfony ^3.3 | ^4.0 | ^5.0 | ^6.0 | ^7.0
- yiisoft/di ^1.0
The following mock implementations are also available:
If a particular implementation is missing that you'd like to see, please open a pull request adding support.
composer require psr-discovery/container-implementations
use PsrDiscovery\Discover;
// Return an instance of the first discovered PSR-11 Container implementation.
$container = Discover::container();
$container->get(...)
If the library is unable to discover a suitable PSR-11 implementation, the Discover::container()
discovery method will simply return null
. This allows you to handle the failure gracefully, for example by falling back to a default implementation.
Example:
use PsrDiscovery\Discover;
$container = Discover::container();
if ($container === null) {
// No suitable Container implementation was discovered.
// Fall back to a default implementation.
$container = new DefaultContainer();
}
By default, the Discover::container()
method will always return a new instance of the discovered implementation. If you wish to use a singleton instance instead, simply pass true
to the $singleton
parameter of the discovery method.
Example:
use PsrDiscovery\Discover;
// $container1 !== $container2 (default)
$container1 = Discover::container();
$container2 = Discover::container();
// $container1 === $container2
$container1 = Discover::container(singleton: true);
$container2 = Discover::container(singleton: true);
This library will give priority to searching for a known, available mocking library before searching for a real implementation. This is to allow for easier testing of code that uses this library.
The expectation is that these mocking libraries will always be installed as development dependencies, and therefore if they are available, they are intended to be used.
If you wish to prefer a specific implementation over others, you can prefer()
it by package name:
use PsrDiscovery\Discover;
use PsrDiscovery\Implementations\Psr11\Containers;
// Prefer the a specific implementation of PSR-11 over others.
Containers::prefer('league/container');
// Return an instance of League\Container\Container,
// or the next available from the list of candidates,
// Returns null if none are discovered.
$container = Discover::container();
This will cause the container()
method to return the preferred implementation if it is available, otherwise, it will fall back to the default behavior.
Note that assigning a preferred implementation will give it priority over the default preference of mocking libraries.
If you wish to force a specific implementation and ignore the rest of the discovery candidates, you can use()
its package name:
use PsrDiscovery\Discover;
use PsrDiscovery\Implementations\Psr11\Containers;
// Only discover a specific implementation of PSR-11.
Containers::use('league/container');
// Return an instance of League\Container\Container,
// or null if it is not available.
$container = Discover::container();
This will cause the container()
method to return the preferred implementation if it is available, otherwise, it will return null
.
This library is not produced or endorsed by, or otherwise affiliated with, the PHP-FIG.