inbep / routing-service-provider
This package is abandoned and no longer maintained.
The author suggests using the sergiors/routing-service-provider package instead.
Import your routes from YAML, PHP files or Directory.
dev-master
2017-05-31 15:01 UTC
Requires
- silex/silex: ^2
- symfony/config: ^2.8|^3.0
- symfony/routing: ^2.8|^3.0
Requires (Dev)
- pdepend/pdepend: ~2.0
- phing/phing: ~2.10
- phploc/phploc: ~2.1
- phpmd/phpmd: ~2.2
- phpunit/phpunit: ~4.8
- sebastian/phpcpd: ~2.0
- squizlabs/php_codesniffer: ~2.1
- symfony/dependency-injection: ^2.8|^3.0
- symfony/yaml: ^2.8|^3.0
Suggests
- symfony/dependency-injection
- symfony/yaml: For using the YAML loader
This package is not auto-updated.
Last update: 2022-02-01 12:51:20 UTC
README
Import your routes from yaml, php files or directory.
Install
composer require sergiors/routing-service-provider "dev-master"
How to user
Your yaml file
index_controller: prefix: / defaults: {_controller: 'Acme\Acme\Controller\IndexController::indexAction'}
In your php file
use Sergiors\Silex\RoutingServiceProvider; $app->register(new RoutingServiceProvider(), [ 'routing.resource' => __DIR__.'/routing.yml' ]);
Remeber, you need install symfony/yaml
to use YAML.
To use %root_dir%
in your yaml files, you need to install symfony/dependency-injection
and set $app['routing.replacements'] = ['root_dir' => '']
License
MIT