-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 908 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
{
"name": "websight/l5-google-client",
"description": "Wraps a authenticated google api client",
"keywords": ["google", "api", "client", "manager", "laravel", "lumen"],
"license": "MIT",
"authors": [
{
"name": "Cedric Ziel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"graham-campbell/manager": "^2.3",
"illuminate/contracts": "5.1.*|5.2.*",
"illuminate/support": "5.1.*|5.2.*",
"google/apiclient": "*"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.8|^5.0"
},
"autoload": {
"psr-4": {
"Websight\\L5GoogleClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Websight\\L5GoogleClient\\Tests\\": "tests/"
}
}
}