kolyunya/yii2-http-authorization

Yii2 HTTP authorization filter.

Maintainers

Package info

github.com/Kolyunya/yii2-http-authorization

Type:yii2-extension

pkg:composer/kolyunya/yii2-http-authorization

Statistics

Installs: 47

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2014-11-14 14:58 UTC

This package is auto-updated.

Last update: 2026-03-11 04:29:56 UTC


README

Usage example

Users credentials are represented as an associative array which may be defined in two different ways. You may either specify the users property of the filter or the application parameter Yii::$app->params['users'].

public function behaviors()
{
    return
    [
        [
            'class' => 'kolyunya\yii2\filters\HttpAuthorization',
            'users' =>
            [
                'user-1' => 'password-1',
                'user-2' => 'password-2'
            ]
        ]
    ];
}