'login' => array(
'type' => 'Literal',
'options' => array(
'route' => '/giris',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'login',
),
),
'may_terminate' => true,
'child_routes' => array(
'provider' => array(
'type' => 'Segment',
'options' => array(
'route' => '/:provider',
'constraints' => array(
'provider' => '[a-zA-Z][a-zA-Z0-9_-]+',
),
'defaults' => array(
'controller' => 'ScnSocialAuth-User',
'action' => 'provider-login',
),
),
),
'query' => array(
'type' => 'Query',
),
),
),
Giving message Deprecated: Query route deprecated as of ZF 2.1.4; use the "query" option of the HTTP router's assembling method instead in /opt/lampp/KendindenApp/vendor/zendframework/zendframework/library/Zend/Mvc/Router/Http/Query.php on line 21
It works fine When i remove this lines.
'query' => array(
'type' => 'Query',
),