-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 939 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": "kahu/oauth2-client",
"description": "Kahu.app OAuth2 Client",
"license": "MIT",
"keywords": ["oauth", "oauth2", "client", "authorization", "kahu", "kahu.app"],
"autoload": {
"psr-4": {
"Kahu\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kahu\\OAuth2\\Client\\Test\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-json": "*",
"league/oauth2-client": "^2.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.2",
"psy/psysh": "^0.11.18",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
}
}