forked from perfectlounge/oauth2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.04 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"name": "datingvip/oauth2-client",
"description": "OAuth 2.0 Client Library",
"homepage": "https://github.com/datingvip/oauth2-client",
"license": "MIT",
"require": {
"php": ">=5.3.0",
"guzzlehttp/guzzle": "~7"
},
"require-dev": {
"phpunit/phpunit": "~9",
"fzaninotto/faker": "~1"
},
"replace": {
"league/oauth2-client": "self.version"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/datingvip/oauth2-client.git"
}
],
"keywords": [
"oauth",
"oauth2",
"authorization",
"authentication",
"idp",
"identity",
"sso",
"single sign on"
],
"authors": [
{
"name": "Alex Bilbie",
"email": "hello@alexbilbie.com",
"homepage": "http://www.alexbilbie.com",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"League\\OAuth2\\Client": "src/"
}
}
}