joomla / authentication
Joomla Authentication Package
Fund package maintenance!
joomla
community.joomla.org/sponsorship-campaigns.html
Installs: 135 782
Dependents: 1
Suggesters: 0
Security: 0
Stars: 9
Watchers: 12
Forks: 6
Open Issues: 0
Type:joomla-package
Requires
- php: ^7.2.5|~8.0.0|~8.1.0
Requires (Dev)
- joomla/coding-standards: ^3.0@dev
- joomla/database: ^2.0
- joomla/input: ^2.0
- phpunit/phpunit: ^8.5|^9.0
- symfony/phpunit-bridge: ^3.4.26|^4.1.12|^4.2.7|^5.0
Suggests
- joomla/database: Required if you want to use Joomla\Authentication\Strategies\DatabaseStrategy
- joomla/input: Required if you want to use classes in the Joomla\Authentication\Strategies namespace
Conflicts
- joomla/database: <2.0
This package is auto-updated.
Last update: 2023-05-24 11:26:41 UTC
README
The authentication package provides a simple interface to authenticate users in a Joomla Framework application. It is completely decoupled from the application class and provides the ability to implement custom authentication strategies.
Installation via Composer
Add "joomla/authentication": "~2.0"
to the require block in your composer.json and then run composer install
.
{ "require": { "joomla/authentication": "~2.0" } }
Alternatively, you can simply run the following from the command line:
composer require joomla/authentication "~2.0"
If you want to include the test sources and docs, use
composer require --prefer-source joomla/authentication "~2.0"