uid/lib-di-container
最新稳定版本:1.0.1
Composer 安装命令:
composer require uid/lib-di-container
包简介
A simple implementation of PSR-11: Container.
关键字:
README 文档
README
A simple implementation of PSR-11: Container.
Description
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.
Features
- Implements the PSR-11 Container interface.
- Supports object instantiation and retrieval.
- Provides dependency injection and method invocation.
Installation
You can install lib-di-container via Composer:
composer require uid/lib-di-container
Usage
Creating a Container
To create a new container, instantiate the Container class:
use Uid\Utils\Container\Container;
$container = new Container();
Defining Services
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');
Retrieving Services
To retrieve a service from the container, use the get method:
$myService = $container->get(MyService::class);
Invoking Methods
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]);
API Reference
Container
The Container class implements the Psr\Container\ContainerInterface interface.
Methods
__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.
Requirements
- PHP >= 8.1
- PSR-Container >= 1.0
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to submit a pull request.
License
This project is licensed under the Apache License 2.0. See the LICENSE file for more information.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2023-07-05