-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·74 lines (74 loc) · 1.94 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
{
"name": "b2pweb/parroauth2-client",
"description": "B2P OAuth 2 client implementation",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sébastien Tanneux"
},
{
"name": "Thomas Vivien"
},
{
"name": "Vincent Quatrevieux"
}
],
"autoload": {
"psr-4": {
"Parroauth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Parroauth2\\Client\\Tests\\": "tests/lib/",
"Parroauth2\\Client\\": "tests/src/"
}
},
"minimum-stability": "dev",
"require": {
"php": "~7.1 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0",
"ext-json": "*",
"php-http/client-common": "~2.4",
"php-http/discovery": "~1.14",
"psr/http-message-implementation": "~1.0",
"psr/http-factory-implementation": "~1.0",
"psr/http-message": "~1.0",
"psr/http-client": "~1.0",
"psr/http-factory": "~1.0",
"psr/simple-cache": "~1.0|~2.0|~3.0",
"spomky-labs/base64url": "~2.0",
"web-token/jwt-signature": "~1.3|~2.0|~3.0",
"web-token/jwt-checker": "~1.3|~2.0|~3.0",
"web-token/jwt-key-mgmt": "~1.3|~2.0|~3.0",
"web-token/jwt-signature-algorithm-ecdsa": "~1.3|~2.0|~3.0",
"web-token/jwt-signature-algorithm-eddsa": "~1.3|~2.0|~3.0",
"web-token/jwt-signature-algorithm-hmac": "~1.3|~2.0|~3.0",
"web-token/jwt-signature-algorithm-none": "~1.3|~2.0|~3.0",
"web-token/jwt-signature-algorithm-rsa": "~1.3|~2.0|~3.0",
"b2pweb/jwt": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0 | ~8.5",
"nyholm/psr7": "~1.4",
"php-http/curl-client": "~2.2",
"bshaffer/oauth2-server-php": "~1.11",
"php-http/mock-client": "~1.3",
"cache/array-adapter": "~1.1",
"vimeo/psalm": "~4.9",
"squizlabs/php_codesniffer": "~3.6"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"tests": "phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}