forked from thephpleague/oauth2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 999 Bytes
/
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
{
"name": "league/oauth2-client",
"description": "OAuth 2.0 Client Library",
"version": "0.1",
"homepage": "https://github.com/php-loep/oauth2-client",
"license": "MIT",
"require": {
"php": ">=5.3.0",
"guzzle/guzzle": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"fzaninotto/faker": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/php-loep/oauth2-client.git"
}
],
"keywords": [
"oauth",
"oauth2",
"authorization",
"authentication",
"idp",
"identity",
"sso",
"single sign on"
],
"authors": [
{
"name": "Alex Bilbie",
"email": "[email protected]",
"homepage": "http://www.alexbilbie.com",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"League\\OAuth2\\Client": "src/"
}
}
}