stoakes / routing-converter
Routing.yml to annotations converter for Symfony
Installs: 805
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 6
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
- gnugat/redaktilo: ~1.0
- symfony/config: ~2.3|~3.0
- symfony/console: ~2.3|~3.0
- symfony/framework-bundle: ~2.3|~3.0
- symfony/http-foundation: ~2.3|~3.0
- symfony/http-kernel: ~2.3|~3.0
- symfony/routing: ~2.3|~3.0
This package is not auto-updated.
Last update: 2025-01-20 11:36:33 UTC
README
Converts your routing.yml files to annotations.
Example
Before
#app/config/routing.yml app_homepage: path: /home/{id} defaults: { _controller: AppBundle:Home:index} requirements: id: \d+ methods: [GET, HEAD]
After
<?php # AppBundle/Controller/HomeController.php use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; class HomeController{ /** * @Route(name="app_homepage", path="/home/{id}", methods={"GET","HEAD"}, requirements={"id": "\d+"}) */ public function indexAction($id){ } }
Installation
composer require stoakes/routing-converter
Then add to your AppKernel.php
<?php if (in_array($this->getEnvironment(), array('dev', 'test'))) { $bundles[] = new Stoakes\RoutingConverterBundle\StoakesRoutingConverterBundle(); }
Use it : php bin/console stoakes:convert_yml PATH_TO_A_ROUTING.YML_FILE [PREFIX]
php bin/console stoakes:convert_yml ./src/AppBundle/Resources/config/routing.yml /fr
How does it works
That bundle provides a convertion command that uses symfony core components (routing, http kernel) and redaktilo to modify your Controllers.
Tests
You : " - Hey that bundle is untested !!"
Me : " - I am working it. However I have created it in 2 evenings to convert routing in one of my app, and it works quite well"