alias.xml 769 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing
  5. https://symfony.com/schema/routing/routing-1.0.xsd">
  6. <route id="route" path="/hello"/>
  7. <route id="overrided" path="/"/>
  8. <route id="alias" alias="route"/>
  9. <route id="deprecated" alias="route">
  10. <deprecated package="foo/bar" version="1.0.0"/>
  11. </route>
  12. <route id="deprecated-with-custom-message" alias="route">
  13. <deprecated package="foo/bar" version="1.0.0">
  14. foo %alias_id%.
  15. </deprecated>
  16. </route>
  17. <route id="deep" alias="alias"/>
  18. <route id="overrided" alias="route"/>
  19. </routes>