-
Notifications
You must be signed in to change notification settings - Fork 152
/
composer.json
43 lines (43 loc) · 1.25 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
{
"name": "egeloen/google-map-bundle",
"type": "symfony-bundle",
"description": "Provides a google map integration for your Symfony2 Project.",
"keywords": [ "google", "map" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0",
"symfony/framework-bundle": "^2.7|^3.0",
"egeloen/google-map": "^2.0.2"
},
"require-dev": {
"egeloen/serializer-bundle": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0",
"php-http/cache-plugin": "^1.4",
"php-http/guzzle6-adapter": "^1.0",
"phpunit/phpunit": "^5.4",
"phpunit/phpunit-selenium": "dev-master",
"symfony/cache": "^3.2",
"symfony/form": "^2.7|^3.0",
"symfony/phpunit-bridge": "^2.7|^3.0",
"symfony/templating": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0",
"twig/twig": "^1.18"
},
"autoload": {
"psr-4": { "Ivory\\GoogleMapBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\GoogleMap\\": "vendor/egeloen/google-map/tests" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}