-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://getcomposer.org/schema.json",
"name": "chillerlan/php-oauth",
"description": "A fully transparent, framework agnostic PSR-18 OAuth client.",
"homepage": "https://github.com/chillerlan/php-oauth",
"license": "MIT",
"type": "library",
"keywords": [
"oauth", "oauth1", "oauth2", "pkce", "authorization", "authentication",
"client", "psr-7", "psr-17", "psr-18", "rfc5849", "rfc6749", "rfc7636"
],
"authors": [
{
"name": "smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"funding": [
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-oauth/issues",
"source": "https://github.com/chillerlan/php-oauth"
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-sodium": "*",
"chillerlan/php-http-message-utils": "^2.2.2",
"chillerlan/php-settings-container": "^3.2.1",
"chillerlan/php-standard-utilities": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"chillerlan/php-dotenv": "^3.0",
"chillerlan/phpunit-http": "^1.0",
"guzzlehttp/guzzle": "^7.9",
"monolog/monolog": "^3.7",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^10.5",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"chillerlan/php-httpinterface": "^6.0 - an alternative PSR-18 HTTP Client"
},
"autoload": {
"psr-4": {
"chillerlan\\OAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\OAuthTest\\": "tests"
}
},
"scripts": {
"phpcs": "@php vendor/bin/phpcs",
"phpstan": "@php vendor/bin/phpstan",
"phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline",
"phpunit": "@php vendor/bin/phpunit"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}