-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "joomla/oauth2",
"type": "joomla-package",
"description": "Joomla OAuth2 Package",
"keywords": ["joomla", "framework", "oauth2"],
"homepage": "https://github.com/joomla-framework/oauth2",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"joomla/application": "^3.0",
"joomla/http": "^3.0",
"joomla/input": "^3.0",
"joomla/session": "^3.0",
"joomla/uri": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.28",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^1.10.7",
"phan/phan": "^5.4.2"
},
"autoload": {
"psr-4": {
"Joomla\\OAuth2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\OAuth2\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}