mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
21 lines
444 B
PHP
21 lines
444 B
PHP
<?php
|
|
use Zend\Expressive\Container\ApplicationFactory;
|
|
|
|
return [
|
|
|
|
'middleware_pipeline' => [
|
|
'routing' => [
|
|
'middleware' => [
|
|
ApplicationFactory::ROUTING_MIDDLEWARE,
|
|
],
|
|
'priority' => 10,
|
|
],
|
|
|
|
'post-routing' => [
|
|
'middleware' => [
|
|
ApplicationFactory::DISPATCH_MIDDLEWARE,
|
|
],
|
|
'priority' => 1,
|
|
],
|
|
],
|
|
];
|