forked from bresam/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.43 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
46
47
48
{
"name": "ivory/google-map",
"description": "Google Map API v3 integration for PHP ^7.0",
"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": "^7.0 || ^8.0",
"ivory/json-builder": "^2.0 || ^3.0",
"symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"ivory/serializer": "^1.0.1",
"friendsofphp/php-cs-fixer": "^2.0",
"php-http/cache-plugin": "^1.4",
"php-http/guzzle6-adapter": "^1.0",
"phpunit/phpunit": "6.5.14",
"phpunit/phpunit-selenium": "4.1.*",
"symfony/cache": "^3.2 || ^4.0",
"symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0",
"ext-json": "*"
},
"suggest": {
"ivory/serializer": "Allows to use http services",
"php-http/client-implementation": "Allows to use http services",
"php-http/message": "Allows to use http services"
},
"replace": {
"egeloen/google-map": "^2.0.2"
},
"autoload": {
"psr-4": { "Ivory\\GoogleMap\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\GoogleMap\\": "tests/" }
}
}