joomla / authentication
Joomla 认证包
3.0.1
2024-08-15 17:55 UTC
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-09-17 09:56:42 UTC
README
认证包提供了一个简单的接口,用于在 Joomla 框架应用程序中验证用户。它与应用程序类完全解耦,并提供了实现自定义认证策略的能力。
通过 Composer 安装
将 "joomla/authentication": "~3.0"
添加到 composer.json 文件中的 require 块,然后运行 composer install
。
{ "require": { "joomla/authentication": "~3.0" } }
或者,您可以直接在命令行中运行以下命令
composer require joomla/authentication "~3.0"
如果您想包含测试源代码和文档,使用
composer require --prefer-source joomla/authentication "~3.0"