This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2 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
{
"name": "chillerlan/php-oauth-providers",
"description": "OAuth 1/2 Provider implementations for chillerlan/php-oauth-core.",
"homepage": "https://github.com/chillerlan/php-oauth-providers",
"license": "MIT",
"type": "library",
"keywords": [
"oauth", "oauth2", "api", "client", "psr-7", "psr-17", "psr-18", "rfc5849", "rfc6749",
"amazon", "bigcartel", "deezer", "deviantart", "discogs", "discord", "flickr", "foursquare",
"github", "gitter", "google", "guildwars2", "instagram", "lastfm", "mailchimp", "mastodon",
"mixcloud", "musicbrainz", "opencaching", "openstreetmap", "patreon", "slack", "soundcloud",
"spotify", "steam", "stripe", "tumblr", "twitch", "twitter", "vimeo", "wordpress",
"npr", "imgur", "gitlab", "bitbucket", "paypal", "microsoft", "battlenet"
],
"authors": [
{
"name": "smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-oauth-providers/issues",
"source": "https://github.com/chillerlan/php-oauth-providers"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-sodium": "*",
"chillerlan/php-oauth-core": "dev-main#35107f36e2b1bf09fd3a675c1589476b3994bcc4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"chillerlan/php-dotenv": "^2.1.2",
"guzzlehttp/guzzle": "^7.7",
"monolog/monolog": "^3.3",
"phan/phan": "^5.4",
"phpmd/phpmd": "^2.15",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"chillerlan\\OAuth\\Providers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\OAuthTest\\": "vendor/chillerlan/php-oauth-core/tests",
"chillerlan\\OAuthTest\\Providers\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}