-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1.27 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "joomla/authentication",
"type": "joomla-package",
"description": "Joomla Authentication Package",
"keywords": ["joomla", "framework", "authentication"],
"homepage": "https://github.com/joomla-framework/authentication",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0"
},
"require-dev": {
"joomla/database": "^3.0",
"joomla/input": "^3.0",
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^7.0",
"squizlabs/php_codesniffer": "~3.10.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phan/phan": "^5.4.2"
},
"suggest": {
"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"
},
"autoload": {
"psr-4": {
"Joomla\\Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Authentication\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}