forked from egeloen/IvoryGoogleMapBundle
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
45 lines (45 loc) · 1.31 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
{
"name": "ivory/google-map-bundle",
"type": "symfony-bundle",
"description": "Provides a google map integration for Symfony",
"keywords": [ "google", "map" ],
"license": "MIT",
"authors": [
{
"name": "Samuel Breu",
"email": "[email protected]",
"role": "Developer/Maintainer"
},
{
"name": "Eric GELOEN",
"email": "[email protected]",
"role": "Creator/Inactive"
}
],
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.4 || ^7.0",
"ivory/google-map": "^6.0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"php-http/cache-plugin": "^2.0",
"php-http/guzzle7-adapter": "^1.0",
"phpunit/phpunit": "^9.6",
"phpunit/phpunit-selenium": "^9.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"twig/twig": "^3.8"
},
"autoload": {
"psr-4": { "Ivory\\GoogleMapBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\GoogleMap\\": "vendor/ivory/google-map/tests" }
},
"replace": {
"egeloen/google-map-bundle": "^3.0.1"
}
}