just-core / auth-login
Authentication Page Plugin for the just-core eco system
Installs: 108
Dependents: 1
Suggesters: 11
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/just-core/auth-login
Requires
- php: >=5.3.7
Suggests
- just-core/auth-login: Authentication Page Plugin for the just-core eco system
- just-core/auth-page: Page White/Black list Plugin for the just-core eco system
- just-core/dao-orm: Object Relational Manager Stub extends Data Access Object for the just-core eco system
- just-core/foundation: PHP Enterprise (HA) High Availability Framework, develop quick and simple, deploy quick and consistent
- just-core/http-optimization: Static asset management, js, css etc. Compile to reduce http request load requests, minify to reduce http load times
- just-core/metronic: support for metronic templates in the just-core eco system
- just-core/scripts: management scripts for the just-core eco system, basic release management stuff, db syncronization some other things
- just-core/stub: Stub application for the just-core eco system, see how simple it is...
This package is auto-updated.
Last update: 2025-12-08 22:30:39 UTC
README
Basic login service supporting user session and database stored credentials
The service expects but does note require the just-core authentication harness see the harness example mentioned below to see how to register authentication services.
Installation
Composer
Add the project to your composer file "just-core/auth-login" : "dev-master", you will also need the supporting project "ircmaxell/password-compat" : "v1.0.4" to leverage the native password_hash() and password_verify() functions if your project is running on a version of PHP older than 5.5.0 (PHP >= 5.3.7 required).
{
"name" : "your project",
"description" : "info about your project",
"license" : "GNU",
"version" : "1.0.0",
"require" : {
"php" : ">=5.3.7",
"just-core/foundation" : "0.5.*",
"just-core/foundation" : "dev-master",
"just-core/auth-login" : "dev-master",
"ircmaxell/password-compat" : "v1.0.4"
},
"autoload" : {
"classmap" : [
"SERVICES"
]
}
}
Configuration
You will also need to take the example files CONFIG.AUTOLOAD.auth.login.local and harness.example.php modify the examples and make them available in your application, ie.
[application_root]/.../[http_exposed_dir]/harness.php
[application_root]/CONFIG/AUTOLOAD/auth.login.local