mitsuki/attributes
Composer 安装命令:
composer require mitsuki/attributes
包简介
A lightweight and high-performance PHP router for the Mitsuki framework, leveraging Symfony Routing components for robust URL management.
README 文档
README
Lightweight PHP 8 Metadata library for the Mitsuki Framework.
This package provides a set of native PHP 8 Attributes to define routing and controller configurations. By separating attributes into this standalone library, your application stays decoupled, and your domain logic remains clean.
✨ Features
- Zero Dependencies: Extremely light footprint with no external requirements.
- PHP 8+ Native: Leveraging the power of native attributes (no more DocBlock annotations).
- Highly Decoupled: Can be used in any project that needs a standardized way to mark controllers and routes.
- Strictly Typed: Fully compatible with static analysis tools like PHPStan or Psalm.
🚀 Installation
You can install the package via Composer:
composer require mitsuki/attributes
🛠 Usage
This library provides two main attributes to decorate your classes and methods.
1. The Controller Attribute
Used at the class level to define a base prefix for all routes within that controller.
use Mitsuki\Attributes\Controller; #[Controller(baseUri: '/api/v1')] class UserController { // ... }
2. The Route Attribute
Used at the method level to define the specific path, name, and allowed HTTP methods.
use Mitsuki\Attributes\Route; class UserController { #[Route(name: 'user_show', path: '/user/{id}', methods: ['GET'])] public function show(int $id) { // Your logic here... } }
🏗 Architecture
The Attributes act as a bridge between your code and the Mitsuki Router.
- Definition: You decorate your code with
#[Route]. - Reflection: The Mitsuki Router/Controller-Resolver reads these attributes using PHP's
ReflectionClass. - Execution: The framework configures the routing table based on this metadata.
📝 API Reference
Mitsuki\Attributes\Controller
| Parameter | Type | Description |
|---|---|---|
$baseUri |
string |
The prefix for all routes in the class. |
Mitsuki\Attributes\Route
| Parameter | Type | Description |
|---|---|---|
$name |
string |
Unique identifier for the route. |
$path |
string |
The URL pattern. |
$methods |
`array | string` |
🤝 Contributing
If you want to add new attributes to the Mitsuki ecosystem:
- Fork the repository.
- Create your attribute class.
- Submit a Pull Request.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
**Maintained by Zgenius Matondo**
mitsuki/attributes 适用场景与选型建议
mitsuki/attributes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 02 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mitsuki/attributes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mitsuki/attributes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 23
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-20