tri-le / laminas-authentication
There is no license information available for the latest version (v1.1.0) of this package.
Authentication module for laminas application
v1.1.0
2023-10-27 16:11 UTC
Requires
- php: ^8.1
- laminas/laminas-authentication: ^2.0
- laminas/laminas-crypt: ^3.0
- laminas/laminas-db: ^2.0
- laminas/laminas-form: ^3.0
- laminas/laminas-i18n: ^2.0
- laminas/laminas-mvc: ^3.0
- laminas/laminas-mvc-plugin-identity: ^1.0
- laminas/laminas-session: ^2.0
This package is auto-updated.
Last update: 2025-03-27 19:11:04 UTC
README
this module is compatible with Laminas application only
Configuration
You must create a dabatase and define the Laminas db
configuration first. Eg mysqli, sqlite,...
'db' => [ 'driver' => 'Pdo_Sqlite', 'database' => realpath(__DIR__ . '/../../data/db/my_db') ]
Before you start
Running the bin/create-user-table
to initialise the stuff. You will be asked to create the very first user.
Start
Access /login
via your browser to test the result. You can use the created user from the step above to log in.
Notes
Password is stored in sha256
hashed value.
To override the view scripts, use the configures:
'layout/login' => __DIR__ . '/../view/layout/login.phtml', 'tri-le/authentication/log-in/index' => __DIR__ . '/../view/log-in/index.phtml', 'tri-le/authentication/success/index' => __DIR__ . '/../view/success/index.phtml'