forked from Kdyby/Google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (50 loc) · 1.08 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
{
"name": "kdyby/google",
"type": "library",
"description": "Google API wrapper and authentication for Nette Framework",
"keywords": ["nette", "google", "authentication", "auth", "login"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Mikuláš Dítě",
"email": "[email protected]"
},
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "[email protected]"
},
{
"name": "Google",
"homepage": "https://github.com/google/google-api-php-client/graphs/contributors"
}
],
"require": {
"nette/nette": "~2.1@dev",
"ext-curl": "*",
"ext-json": "*",
"google/apiclient": "~1.1"
},
"require-dev": {
"nette/tester": "@dev",
"jakub-onderka/php-parallel-lint": "~0.7"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/kdyby/google/issues"
},
"autoload": {
"psr-0": {
"Kdyby\\Google\\": "src/"
},
"classmap": [
"src/Kdyby/Google/exceptions.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}