vaened/php-tag-finder
Composer 安装命令:
composer require vaened/php-tag-finder
包简介
README 文档
README
Library created to simplify the search for PHP classes based on their parent class/interface.
Installation
You can install the library using composer.
composer require vaened/php-tag-finder
Usage
The definition of tag in this library is understood as an interface or abstract class.
With that in mind, to obtain, for example, all the handlers of a system, it would be enough to search for all the PHP classes that
implement the Handler interface.
$finder = new ClassFinder(...); $classes = $finder->instancesOf(Handler::class);
This will return an associative array, where the key is the physical location of the file on disk and the value is the class it references in the project.
Configuration
The configuration consists of how to create the ClassFinder, for this we must understand 2 concepts, the source where the search will be
performed, and the namespace that represents that location.
- source: the location where you will start looking for tagged classes.
- namespace: the representation of this location in the project.
Example
Let's suppose that the project is called Ecommerce, where the namespace is also Ecommerce\\.
src ├── App │ ├── Categories │ │ └── CreateCategoryHandler.php │ ├─── Products │ │ └── CreateProductHandler.php │ ├── Handler.php
So, to locate only the classes that correspond to the application, in this case you would have to instantiate the ClassFinder to search within the root of the project/App, with its equivalent for the namespace.
$paths = [$rootProyectPath, 'src', 'App']; $finder = new ClassFinder( implode(DIRECTORY_SEPARATOR, $paths), 'Ecommerce\\App' );
License
This library is licensed under the MIT License. For more information, please see the license file.
vaened/php-tag-finder 适用场景与选型建议
vaened/php-tag-finder 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 133.24k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 07 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 vaened/php-tag-finder 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vaened/php-tag-finder 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 133.24k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 26
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-07-28