The package provides a convention-based router middleware that chooses controller based on its namespace and class name.
- PHP 8.1 or higher.
The package could be installed with Composer:
composer require yiisoft/file-router
-
Add
\Yiisoft\FileRouter\FileRouter
to the list of middlewares in your application configuration,web/params.php
:return [ 'middlewares' => [ // ... \Yiisoft\FileRouter\FileRouter::class, // or [ 'class' => FileRouter::class, 'withNamespace()' => ['MyApp\\Package1'], 'withDefaultControllerName()' => ['Default'], ], // ... ] ];
-
Configure the router for your needs.
For additional information, check the following docs:
- Guide: English, Português - Brasil
- Internals
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
The Yii File Router is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.