Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-expressive-authentication 1.1.0

Latest
Compare
Choose a tag to compare
@weierophinney weierophinney released this 05 Mar 17:50
· 13 commits to master since this release

Added

  • #41 allows users to provide an application-specific PDO service name to use
    with the PdoDatabase user repository implementation, instead of connection
    parameters. This allows re-use of an existing PDO connection. To configure it:

    return [
        'authentication' => [
            'pdo' => [
                'service' => 'name-of-existing-PDO-service',
                'table' => 'name-of-table-to-use',
                'field' => [
                    'identity' => 'name-of-field-containing-identity',
                    'password' => 'name-of-field-containing-password-hash',
                ],
            ],
        ],
    ];

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.