<?xml version="1.0" encoding="UTF-8"?>
<routes>
  <route name="route_1" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\RouteStub">
    <path regex="#PATH_REGEX#">/hello/{name}</path>
    <host regex="#HOST_REGEX#">localhost</host>
    <scheme>http</scheme>
    <scheme>https</scheme>
    <method>GET</method>
    <method>HEAD</method>
    <defaults>
      <default key="name">Joseph</default>
    </defaults>
    <requirements>
      <requirement key="name">[a-z]+</requirement>
    </requirements>
    <options>
      <option key="compiler_class">Symfony\Component\Routing\RouteCompiler</option>
      <option key="opt1">val1</option>
      <option key="opt2">val2</option>
    </options>
  </route>
  <route name="route_2" class="Symfony\Bundle\FrameworkBundle\Tests\Console\Descriptor\RouteStub">
    <path regex="#PATH_REGEX#">/name/add</path>
    <host regex="#HOST_REGEX#">localhost</host>
    <scheme>http</scheme>
    <scheme>https</scheme>
    <method>PUT</method>
    <method>POST</method>
    <options>
      <option key="compiler_class">Symfony\Component\Routing\RouteCompiler</option>
      <option key="opt1">val1</option>
      <option key="opt2">val2</option>
    </options>
    <condition>context.getMethod() in ['GET', 'HEAD', 'POST']</condition>
  </route>
</routes>
