chubbyphp / chubbyphp-framework-router-fastroute
Fastroute router implementation for chubbyphp-framework.
Installs: 17 095
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- chubbyphp/chubbyphp-framework: ^5.1
- chubbyphp/chubbyphp-http-exception: ^1.1
- nikic/fast-route: ^1.3
- psr/http-message: ^1.1|^2.0
Requires (Dev)
- chubbyphp/chubbyphp-dev-helper: dev-master
- chubbyphp/chubbyphp-mock: ^1.7
- guzzlehttp/psr7: ^2.6.1
- http-interop/http-factory-guzzle: ^1.2
- infection/infection: ^0.27.8
- laminas/laminas-diactoros: ^3.3
- nyholm/psr7: ^1.8.1
- php-coveralls/php-coveralls: ^2.7.0
- phpstan/extension-installer: ^1.3.1
- phpstan/phpstan: ^1.10.45
- phpunit/phpunit: ^10.4.2
- slim/psr7: ^1.6.1
- sunrise/http-message: ^3.0
README
Description
Fastroute Router implementation for chubbyphp-framework.
Requirements
- php: ^8.1
- chubbyphp/chubbyphp-framework: ^5.1
- chubbyphp/chubbyphp-http-exception: ^1.1
- nikic/fast-route: ^1.3
- psr/http-message: ^1.1|^2.0
Installation
Through Composer as chubbyphp/chubbyphp-framework-router-fastroute.
composer require chubbyphp/chubbyphp-framework-router-fastroute "^2.1"
Usage
<?php declare(strict_types=1); namespace App; use Chubbyphp\Framework\Application; use Chubbyphp\Framework\Middleware\ExceptionMiddleware; use Chubbyphp\Framework\Middleware\RouteMatcherMiddleware; use Chubbyphp\Framework\RequestHandler\CallbackRequestHandler; use Chubbyphp\Framework\Router\FastRoute\RouteMatcher; use Chubbyphp\Framework\Router\Route; use Chubbyphp\Framework\Router\RoutesByName; use Psr\Http\Message\ServerRequestInterface; use Slim\Psr7\Factory\ResponseFactory; use Slim\Psr7\Factory\ServerRequestFactory; require __DIR__.'/vendor/autoload.php'; $responseFactory = new ResponseFactory(); $app = new Application([ new ExceptionMiddleware($responseFactory, true), new RouteMatcherMiddleware(new RouteMatcher(new RoutesByName([ Route::get('/hello/{name:[a-z]+}', 'hello', new CallbackRequestHandler( static function (ServerRequestInterface $request) use ($responseFactory) { $response = $responseFactory->createResponse(); $response->getBody()->write(sprintf('Hello, %s', $request->getAttribute('name'))); return $response; } )) ]))), ]); $app->emit($app->handle((new ServerRequestFactory())->createFromGlobals()));
Copyright
2024 Dominik Zogg