uid/lib-di-container
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.
uid/lib-di-container 适用场景与选型建议
uid/lib-di-container 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 07 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「container」 「di」 「PSR-11」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 uid/lib-di-container 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 uid/lib-di-container 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 uid/lib-di-container 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Facilitates the routine step of bootstrapping PHP applications.
A fast and intuitive dependency injection container.
PSR-11 Aura.DI container configurator for Laminas and Mezzio applications. Drop-in replacement for the archived laminas/laminas-auradi-config with PHP 8.4 and 8.5 support.
Symfony compiler pass that allows to use service providers as defined in container-interop/service-provider
Dependency injection container for the Monolith framework.
The PSR-11 container bridges
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2023-07-05