https://github.com/joomla-framework/authentication
Authentication Package for the Joomla Framework
https://github.com/joomla-framework/authentication
authentication joomla-framework php
Last synced: 10 months ago
JSON representation
Authentication Package for the Joomla Framework
- Host: GitHub
- URL: https://github.com/joomla-framework/authentication
- Owner: joomla-framework
- License: lgpl-2.1
- Created: 2014-02-09T02:02:13.000Z (almost 12 years ago)
- Default Branch: 3.x-dev
- Last Pushed: 2024-12-10T06:59:57.000Z (about 1 year ago)
- Last Synced: 2025-03-30T03:06:54.985Z (10 months ago)
- Topics: authentication, joomla-framework, php
- Language: PHP
- Homepage:
- Size: 5.26 MB
- Stars: 9
- Watchers: 12
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# The Authentication Package [](https://ci.joomla.org/joomla-framework/authentication)
[](https://packagist.org/packages/joomla/authentication)
[](https://packagist.org/packages/joomla/authentication)
[](https://packagist.org/packages/joomla/authentication)
[](https://packagist.org/packages/joomla/authentication)
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`.
```json
{
"require": {
"joomla/authentication": "~3.0"
}
}
```
Alternatively, you can simply run the following from the command line:
```sh
composer require joomla/authentication "~3.0"
```
If you want to include the test sources and docs, use
```sh
composer require --prefer-source joomla/authentication "~3.0"
```