-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
55 lines (55 loc) · 1.45 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
{
"name": "dynamic/silverstripe-elemental-customer-service",
"description": "Display a map, directions, and contact info for your location",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"elemental",
"blocks",
"map",
"location",
"contact",
"phone"
],
"authors": [
{
"name": "Dynamic",
"email": "dev@dynamicagency.com",
"homepage": "https://www.dynamicagency.com"
}
],
"require": {
"dnadesign/silverstripe-elemental": "^5.0",
"dynamic/silverstripe-geocoder": "^3.0",
"silverstripe/framework": "^5.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\Elements\\CustomerService\\": "src/",
"Dynamic\\Elements\\CustomerService\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
},
"process-timeout": 600
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
}
}