forked from silvester/ReverseOAuth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 920 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
{
"name": "priorist/zf-reverseoauth2",
"description": "Oauth2 client for zf2. Facebook, github and google is supported.",
"minimum-stability": "dev",
"type" : "module",
"homepage" : "https://github.com/priorist/ZF-ReverseOAuth2",
"keywords" : ["oauth2", "zf2", "module"],
"license" : "MIT",
"authors": [
{
"name": "Silvester Maraz",
"email": "[email protected]",
"homepage": "http://maraz.org"
},
{
"name": "André Simmert",
"email": "[email protected]",
"homepage": "https://priorist.com"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*"
},
"autoload": {
"psr-0": {
"ReverseOAuth2": "src/"
},
"classmap": [
"./Module.php"
]
}
}