forked from egeloen/ivory-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.41 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
49
50
51
52
53
54
55
56
{
"name": "validaide/google-map",
"description": "Google Map API v3 integration - PHP >= 7.4",
"keywords": [
"google",
"map",
"validaide"
],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
},
{
"name": "Mark Bijl",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/event-dispatcher": "^5.4",
"symfony/property-access": "^5.4",
"symfony/serializer": "^5.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"php-http/cache-plugin": "^1.7",
"php-http/guzzle6-adapter": "^2.0",
"php-http/httplug": "^2.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "8.*",
"phpunit/phpunit-selenium": "8.*",
"rector/rector": "^0.15.0",
"symfony/cache": "^5.4",
"symfony/phpunit-bridge": "^5.4"
},
"suggest": {
"php-http/client-implementation": "Allows to use http services",
"php-http/message": "Allows to use http services"
},
"autoload": {
"psr-4": {
"Ivory\\GoogleMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ivory\\Tests\\GoogleMap\\": "tests/"
}
}
}