mitsuki/attributes 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mitsuki/attributes

最新稳定版本:v1.0.0

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.

  1. Definition: You decorate your code with #[Route].
  2. Reflection: The Mitsuki Router/Controller-Resolver reads these attributes using PHP's ReflectionClass.
  3. 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:

  1. Fork the repository.
  2. Create your attribute class.
  3. Submit a Pull Request.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

**Maintained by Zgenius Matondo**

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 4
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-20

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固