Skip to content
Snippets Groups Projects
Select Git revision
  • fe24ee99e94099621c5e516e1c84b22d425ef2d1
  • master default protected
  • release_3.0.0
  • test
  • feature_pre_sql
  • develop
  • 3.0.1
  • 3.0.0
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
26 results

global.php

Blame
  • 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' => [],
            ],
        ],
    ];