Skip to content

Instantly share code, notes, and snippets.

@jmvelasco
Created February 5, 2014 12:39
Show Gist options
  • Save jmvelasco/8822754 to your computer and use it in GitHub Desktop.
Save jmvelasco/8822754 to your computer and use it in GitHub Desktop.
'configure' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/configure[/:id[/:motor]]',
'constraints' => array(
'id' => '[0-9]*[a-zA-Z][a-zA-Z0-9_-]*',
'motor' => '[0-9]*[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => 'Application\Controller\Application',
'action' => 'configure',
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment