12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- return [
- 'router' => [
- 'routes' => [
- 'literal' => [
- 'type' => 'Literal',
- 'options' => [
- 'route' => '/',
- 'defaults' => [
- 'controller' => \Magento\Setup\Controller\Index::class,
- 'action' => 'index',
- ],
- ],
- ],
- 'setup' => [
- 'type' => 'Segment',
- 'options' => [
- 'route' => '[/:controller[/:action]]',
- 'defaults' => [
- '__NAMESPACE__' => 'Magento\Setup\Controller',
- 'controller' => 'Index',
- 'action' => 'index',
- ],
- 'constraints' => [
- 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- ],
- ],
- ],
- ],
- ],
- ];
|