PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Dariusz   PHP Digest Authentication   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: PHP Digest Authentication
Implements HTTP Digest Authentication
Author: By
Last change:
Date: 4 years ago
Size: 1,137 bytes
 

Contents

Class file image Download

Digest Authentication

Latest Stable Version Donate Tests

Digest Authentication RFC 2617 for Lumen 5.x

Installation

Installation using composer:

composer require darkin1/digest-auth

And add the service provider in config/app.php:

Darkin1\DigestAuth\DigestAuthServiceProvider::class,

Configuration

Change your default settings in app/config/digest-auth.php:

<?php
return [
    'realm' => env('DIGEST_REALM', ''),
    'user' => env('DIGEST_USER', ''),
    'password' => env('DIGEST_PASS', ''),
    'driver' => env('DIGEST_DRIVER', 'env'),
];

Documentation

Digest Authentication RCF

php.net example