├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── psalm.xml ├── psalm_autoload.php ├── rector.php └── src └── AttributeRoutes ├── AbstractRouteRest.php ├── AttributeReader.php ├── AttributeReader ├── ClassReader.php └── MethodReader.php ├── Commands └── AttributeRoutes.php ├── ControllerFinder.php ├── Exception └── LogicException.php ├── Route.php ├── RouteFileGenerator.php ├── RouteGroup.php ├── RoutePresenter.php ├── RouteResource.php └── VarExportTrait.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/phpcs.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/psalm.xml -------------------------------------------------------------------------------- /psalm_autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/psalm_autoload.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/rector.php -------------------------------------------------------------------------------- /src/AttributeRoutes/AbstractRouteRest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/AbstractRouteRest.php -------------------------------------------------------------------------------- /src/AttributeRoutes/AttributeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/AttributeReader.php -------------------------------------------------------------------------------- /src/AttributeRoutes/AttributeReader/ClassReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/AttributeReader/ClassReader.php -------------------------------------------------------------------------------- /src/AttributeRoutes/AttributeReader/MethodReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/AttributeReader/MethodReader.php -------------------------------------------------------------------------------- /src/AttributeRoutes/Commands/AttributeRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/Commands/AttributeRoutes.php -------------------------------------------------------------------------------- /src/AttributeRoutes/ControllerFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/ControllerFinder.php -------------------------------------------------------------------------------- /src/AttributeRoutes/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/Exception/LogicException.php -------------------------------------------------------------------------------- /src/AttributeRoutes/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/Route.php -------------------------------------------------------------------------------- /src/AttributeRoutes/RouteFileGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/RouteFileGenerator.php -------------------------------------------------------------------------------- /src/AttributeRoutes/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/RouteGroup.php -------------------------------------------------------------------------------- /src/AttributeRoutes/RoutePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/RoutePresenter.php -------------------------------------------------------------------------------- /src/AttributeRoutes/RouteResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/RouteResource.php -------------------------------------------------------------------------------- /src/AttributeRoutes/VarExportTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci4-attribute-routes/HEAD/src/AttributeRoutes/VarExportTrait.php --------------------------------------------------------------------------------