-
Notifications
You must be signed in to change notification settings - Fork 115
/
composer.json
62 lines (62 loc) · 1.98 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
61
62
{
"name": "dnadesign/silverstripe-elemental",
"description": "Elemental pagetype and collection of Elements",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"element",
"elemental",
"content blocks"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexandre Saelens",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"silverstripe/framework": "^5.4",
"silverstripe/cms": "^5",
"silverstripe/admin": "^2.0.1",
"silverstripe/versioned": "^2",
"silverstripe/versioned-admin": "^2",
"silverstripe/graphql": "^5",
"symbiote/silverstripe-gridfieldextensions": "^4",
"silverstripe/vendor-plugin": "^2"
},
"require-dev": {
"silverstripe/documentation-lint": "^1",
"silverstripe/recipe-testing": "^3",
"silverstripe/frameworktest": "^1",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"suggest": {
"silverstripe/elemental-blocks": "Adds a set of common SilverStripe content block types",
"silverstripe/fulltextsearch": "Adds fulltext search capability for elements using Solr",
"dnadesign/silverstripe-elemental-subsites": "Adds subsite support to elemental",
"dnadesign/silverstripe-elemental-userforms": "Adds userform support to elemental",
"dnadesign/silverstripe-elemental-virtual": "Adds support to share blocks between pages"
},
"extra": {
"expose": [
"client/dist",
"client/lang"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"DNADesign\\Elemental\\": "src/",
"DNADesign\\Elemental\\Tests\\": "tests/"
}
}
}