echo-fusion/servicemanager
Composer 安装命令:
composer require echo-fusion/servicemanager
包简介
A flexible service management package for PHP applications, providing service registration, lazy loading, and configurable dependency injection support.
README 文档
README
The ServiceManager package is a lightweight, flexible dependency injection container for managing services in PHP applications. It supports features like singleton services, auto-wiring, and lazy loading, making it easy to define and resolve services of varying complexity.
With ServiceManagerProvider, the package can be seamlessly integrated into applications that use PSR-11-compatible containers.
Install
Via Composer
$ composer require echo-fusion/servicemanager
Requirements
The following versions of PHP are supported by this version.
- PHP 8.1
- PHP 8.2
- PHP 8.3
Key Features
- Auto-wiring: Automatically resolves dependencies for class constructors.
- Singleton support: Define services as shared (singleton) instances.
- Lazy loading: Services are instantiated only when requested.
- Configurable overrides: Allow or restrict overriding existing services.
Usage
Basic Setup
- Register Services: Add services to the container with set().
- Resolve Services: Retrieve instances via get().
- Enable Override: Allow service overrides using enableOverride().
This example demonstrates how to register and retrieve services, configure singletons, and enable auto-wiring for classes:
use EchoFusion\ServiceManager\ServiceManager; use EchoFusion\ServiceManager\Exceptions\ServiceManagerException; $serviceManager = new ServiceManager(); // Register a service with an ID and class name (shared as singleton) $serviceManager->set(MyServiceInterface::class, MyService::class, true); // Register a service with a factory (non-singleton) $serviceManager->set(AnotherServiceInterface::class, function (ServiceManagerInterface $sm) { return new AnotherService($sm->get(MyServiceInterface::class)); }); // Retrieve services $myService = $serviceManager->get(MyServiceInterface::class); $anotherService = $serviceManager->get(AnotherServiceInterface::class); // Check if a service exists if ($serviceManager->has(MyServiceInterface::class)) { // ... }
Using provider
The ServiceManagerProvider integrates ServiceManager into a PSR-11-compatible container and manages service booting and configuration.
Note: Copy the config file into your project's config directory and add your application's dependencies following the provided example.
use EchoFusion\ServiceManager\DefaultContainer; use EchoFusion\ServiceManager\Providers\ServiceManagerProvider; use EchoFusion\ServiceManager\ServiceManagerInterface; // Initialize a container, falling back to DefaultContainer if $container is not provided $container = $container ?? new DefaultContainer(); // Initialize the ServiceManagerProvider with the container $provider = new ServiceManagerProvider(); // Register the ServiceManager within the container $provider->register($container); // Define and boot service configurations $config = require __DIR__ . '/config/servicemanager.config.php';// replace path with your project config directory $provider->boot($container, $config]); // Retrieve the service manager from the container $serviceManager = $container->get(ServiceManagerInterface::class); // Now you can access services through $serviceManager if ($serviceManager->has(MyServiceInterface::class)) { $myService = $serviceManager->get(MyServiceInterface::class); } // or if you want to get exception if service definition doesn't exist try { $serviceManager->get(AnotherServiceInterface::class); } catch (ServiceManagerException | ReflectionException $e) { echo $e->getMessage(); }
Testing
Testing includes PHPUnit and PHPStan (Level 7).
$ composer test
Credits
Developed and maintained by Amir Shadanfar.
Connect on LinkedIn.
License
The MIT License (MIT). Please see License File for more information.
echo-fusion/servicemanager 适用场景与选型建议
echo-fusion/servicemanager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 10 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「container」 「Service Manager」 「PSR-11」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 echo-fusion/servicemanager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 echo-fusion/servicemanager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 echo-fusion/servicemanager 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
A fast and intuitive dependency injection container.
Registry service.
swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations
KCFinder web file manager
Service auto install for Nette Framework
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-10-01