Select Git revision
AbstractFactory.php
Forked from
lib / unicaen / auth
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
global.php 699 B
<?php
return [
'zf-mvc-auth' => [
'authentication' => [
'adapters' => [
'basic' => [
'adapter' => \ZF\MvcAuth\Authentication\HttpAdapter::class,
'options' => [
'accept_schemes' => [
0 => 'basic',
],
'realm' => 'api',
//'htpasswd' => __DIR__ . '/../users.htpasswd',
],
],
],
],
],
'zf-content-negotiation' => [
'selectors' => [],
],
'db' => [
'adapters' => [
'dummy' => [],
],
],
];