-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
54 lines (54 loc) · 1.44 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
{
"name": "dynamic/silverstripe-elemental-features",
"description": "A block that displays featured content - large image, title, description and link.",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"elemental",
"content",
"blocks",
"feature",
"content"
],
"authors": [
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "https://www.dynamicagency.com"
}
],
"require": {
"dnadesign/silverstripe-elemental": "^5",
"dynamic/silverstripe-elemental-baseobject": "^5",
"jonom/focuspoint": "^5.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\Elements\\Features\\": "src/",
"Dynamic\\Elements\\Features\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
},
"process-timeout": 600
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
}
}