Download the PHP package modera/routing-bundle without Composer
On this page you can find all versions of the php package modera/routing-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download modera/routing-bundle
More information about modera/routing-bundle
Files in modera/routing-bundle
Package routing-bundle
Short Description This bundle makes it possible for bundles to dynamically include routing files from within your bundles.
License MIT
Informations about the package routing-bundle
ModeraRoutingBundle
This bundle makes it possible for bundles to dynamically include routing files so you don't need to manually register
them in root app/config/routing.yml
file.
Installation
Step 1: Download the Bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
This bundle should be automatically enabled by Flex.
In case you don't use Flex, you'll need to manually enable the bundle by
adding the following line in the config/bundles.php
file of your project:
Step 3: Add routing
Documentation
Internally ModeraRoutingBundle
relies on SliExpanderBundle
to leverage a consistent approach to creating extension
points. Shortly speaking, in order for a bundle to contribute routing resources it has to do two things:
- Create a contributor class which implements \Sli\ExpanderBundle\Ext\ContributorInterface
- Register it in a service container with tag
modera_routing.routing_resources_provider
.
This is how your contributor class may look like:
And here we have its service container definition:
Since version v1.1 a simplified way of contributing new routing resources has been added (which doesn't require adding intermediate files). Instead of having getItems() method return a path to a routing file you can now return normalized file's content:
Licensing
This bundle is under the MIT license. See the complete license in the bundle: Resources/meta/LICENSE
All versions of routing-bundle with dependencies
symfony/framework-bundle Version ^3.4|^4.0
sergeil/expander-bundle Version ^1.0