forked from Happyr/GoogleApiBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 826 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
{
"name": "happyr/google-api-bundle",
"type": "symfony-bundle",
"description": "A Symfony2 Wrapper for the Google APIs Client Library for PHP",
"keywords": ["Google API"],
"homepage": "http://developer.happyr.com/symfony2-bundles/google-api-bundle",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias@happyr.com"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "2.*|~3.0",
"symfony/yaml": "2.*|~3.0",
"google/apiclient": "1.*|2.*"
},
"require-dev": {
"mockery/mockery": "*"
},
"autoload": {
"psr-4": { "HappyR\\Google\\ApiBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}