[ Zend\Expressive\Container\ApplicationFactory::ROUTING_MIDDLEWARE, ['middleware' => Zend\Expressive\Helper\UrlHelperMiddleware::class], Zend\Expressive\Container\ApplicationFactory::DISPATCH_MIDDLEWARE, ], 'routes' => [ [ 'path' => '/', 'middleware' => Test\App\HomeAction::class, 'allowed_methods' => [ 'GET' ], 'name' => 'home', ], [ 'path' => '/test/another/path', 'middleware' => Test\App\HomeAction::class, 'allowed_methods' => [ 'GET' ], 'name' => 'other', ], ], ]);