forked from pulkitjalan/google-apiclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 841 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": "pulkitjalan/google-apiclient",
"description": "Google api php client wrapper with Cloud Platform and Laravel 4 & 5 support",
"homepage": "https://github.com/pulkitjalan/google-apiclient",
"keywords": ["laravel", "google", "cloud platform"],
"license": "MIT",
"authors": [
{
"name": "Pulkit Jalan"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5",
"google/apiclient": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"PulkitJalan\\Google\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}