| src/ Container | 2 years ago | ||
| tests/ Container | 2 years ago | ||
| .gitignore | 2 years ago | ||
| LICENSE | 2 years ago | ||
| README.md | 2 years ago | ||
| composer.json | 2 years ago | ||
| composer.lock | 2 years ago | ||
A simple implementation of PSR-11: Container.
lib-di-container is a lightweight PHP library that provides a simple implementation of the PSR-11 Container interface. It allows you to manage and retrieve objects and dependencies in your applications.
You can install lib-di-container via Composer:
composer require uid/lib-di-container
To create a new container, instantiate the Container class:
use Uid\Utils\Container\Container; $container = new Container();
You can define services in the container using the set method. Services can be defined as anonymous functions or class names:
// Define a service as an anonymous function
$container->set('myService', function ($container) {
return new MyService();
});
// Define a service as a class name
$container->set('myService', 'MyService');
To retrieve a service from the container, use the get method:
$myService = $container->get(MyService::class);
The container allows you to invoke methods on objects using the invoke method. You can specify the object and method to invoke, along with any required parameters:
$result = $container->invoke($myService, 'someMethod', ['param1' => $value1]);
The Container class implements the Psr\Container\ContainerInterface interface.
__construct(array $definitions = []): Creates a new container with optional initial service definitions.value(string $name, mixed $value): self: Define a value to be stored in the container.alias(string $name, string $alias): self: Define an alias for a name in the container.set(string $name, string|callable $value, array $constants = [], bool $singleton = false): self: Defines a service in the container.has(string $id): bool: Returns true if the container can return an entry for the given identifier.get(string $id): mixed: Retrieves a service from the container.invoke(string|object $entry, string $method = '__invoke', array $constants = []): mixed: Invokes a method on an object.Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to submit a pull request.
This project is licensed under the Apache License 2.0. See the LICENSE file for more information.