This repository was archived by the owner on Mar 23, 2024. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
72 lines (72 loc) · 1.73 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
{
"name": "chillerlan/php-oauth-core",
"description": "A PHP OAuth client core library",
"homepage": "https://github.com/chillerlan/php-oauth-core",
"license": "MIT",
"type": "library",
"keywords": [
"oauth", "oauth1", "oauth2", "authorization", "authentication",
"client", "psr-7", "psr-17", "psr-18", "rfc5849", "rfc6749"
],
"authors": [
{
"name": "smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-oauth-core/issues",
"source": "https://github.com/chillerlan/php-oauth-core"
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-sodium": "*",
"ext-zlib": "*",
"chillerlan/php-http-message-utils": "^2.2.1",
"chillerlan/php-settings-container": "^3.2",
"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.8",
"monolog/monolog": "^3.5",
"phan/phan": "^5.4",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9"
},
"suggest": {
"chillerlan/php-httpinterface": "^6.0 - an alternative PSR Message/Client implementation"
},
"autoload": {
"psr-4": {
"chillerlan\\OAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\OAuthTest\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}