ap-lib / routing-builder
dev-main
2025-03-20 01:48 UTC
Requires
- php: ^8.3
- ap-lib/directory-class-finder: dev-main
- ap-lib/logger: dev-main
- ap-lib/routing: dev-main
Requires (Dev)
- phpunit/phpunit: 10.5.*
This package is auto-updated.
Last update: 2025-03-20 01:48:19 UTC
README
A helper repository for managing routing indexes: https://github.com/ap-lib/routing This package allows you to define routes using attributes directly in your handlers, making the development process easier.
Installation
composer require ap-lib/routing-builder
Features
- Help to define routing index using attributes
- Group routes easily with RouteGroup
Requirements
- PHP 8.3 or higher
Getting started
Base controller
class Main { #[Route(path: "/")] public static function root(): string { return "hello world"; } }
Group routes
#[RouteGroup(path: "/users")] class Users { #[Route(path: "")] public static function list(): array { return []; } #[Route(path: "/create", method: Method::POST)] public static function create(): Json { return new Json( ["id" => 123456], 201 ); } #[Route(path: "/update", method: Method::PUT)] public static function update(): Response { return new Response(code: 204); } #[Route(path: "/delete", method: Method::DELETE)] public static function delete(): Response { return new Response(code: 204); } }
Preparing an Index for All Classes in a Directory
For more details on routing and indexes, see: https://github.com/ap-lib/routing
$index = new HashmapIndex(); $builder = new ByAttributes(__DIR__ . "/Handlers"); $builder->modifyIndex($index);