-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
60 lines (60 loc) · 1.47 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
60
{
"name": "dynamic/silverstripe-locator",
"description": "SilverStripe Locator Module. Show locations on a map. Search by geoposition.",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"map",
"locator",
"dynamic",
"geocode",
"google maps",
"location"
],
"authors": [
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "https://www.dynamicagency.com"
}
],
"require": {
"colymba/gridfield-bulk-editing-tools": "^3.0",
"dynamic/silverstripe-geocoder": "^1.3 || ^2.0",
"littlegiant/silverstripe-catalogmanager": "^5.2",
"muskie9/data-to-arraylist": "^2.0",
"silverstripe/lumberjack": "^2.0",
"silverstripe/recipe-cms": "^4.0",
"symbiote/silverstripe-gridfieldextensions": "^3.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^2"
},
"suggest": {
"axllent/silverstripe-bootstrap-forms": "Add CSS classes to Silverstripe forms to play nicer with Twitter Bootstrap"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\Locator\\": "src/",
"Dynamic\\Locator\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
},
"process-timeout": 600
},
"extra": {
"expose": [
"thirdparty",
"css",
"client"
]
}
}