joomla / authentication
Joomla Authentication Package
Fund package maintenance!
joomla
community.joomla.org/sponsorship-campaigns.html
Installs: 180 936
Dependents: 1
Suggesters: 0
Security: 0
Stars: 9
Watchers: 14
Forks: 7
Open Issues: 1
Type:joomla-package
Requires
- php: ^8.1.0
Requires (Dev)
- joomla/database: ^3.0
- joomla/input: ^3.0
- phan/phan: ^5.4.2
- phpstan/phpstan: ^1.10.7
- phpunit/phpunit: ^9.5.28
- squizlabs/php_codesniffer: ^3.7.2
- symfony/phpunit-bridge: ^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
This package is auto-updated.
Last update: 2024-10-08 21:11:39 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": "~3.0"
to the require block in your composer.json and then run composer install
.
{ "require": { "joomla/authentication": "~3.0" } }
Alternatively, you can simply run the following from the command line:
composer require joomla/authentication "~3.0"
If you want to include the test sources and docs, use
composer require --prefer-source joomla/authentication "~3.0"