-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
59 lines (59 loc) · 1.33 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
57
58
59
{
"name": "dynamic/silverstripe-locator",
"description": "SilverStripe Locator Module. Show locations on a map. Search by geoposition.",
"keywords": [
"silverstripe",
"map",
"locator",
"dynamic",
"geocode",
"google maps",
"location"
],
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "http://www.dynamicagency.com"
}
],
"require": {
"silverstripe/recipe-cms": "^1.0 || ^4.0",
"silverstripe/vendor-plugin": "^1.0",
"muskie9/data-to-arraylist": "^2.0",
"dynamic/silverstripe-geocoder": "^1.0",
"symbiote/silverstripe-gridfieldextensions": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"phploc/phploc": "^4.0",
"pdepend/pdepend": "^2.5",
"theseer/phpdox": "^0.11.0"
},
"config": {
"process-timeout": 600
},
"autoload": {
"psr-4": {
"Dynamic\\Locator\\": "src/",
"Dynamic\\Locator\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"expose": [
"thirdparty",
"css",
"client"
],
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}