-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 901 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
{
"name": "howlowck/meetup-oauth2-provider",
"description": "Meetup OAuth2 Client Provider for Leagues OAuth2-Client",
"version": "0.1.0",
"authors": [
{
"name": "Hao Luo",
"email": "[email protected]"
}
],
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authentication",
"idp",
"identity",
"sso",
"single sign on",
"meetup"
],
"require": {
"php": ">=5.4.0",
"league/oauth2-client": "~0.4.0"
},
"require-dev": {
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"Howlowck\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Howlowck\\OAuth2\\Client\\Test\\": "tests/src/"
}
},
"minimum-stability": "stable"
}