-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·35 lines (35 loc) · 980 Bytes
/
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
{
"name": "robertvanlienden/silverstripe-elemental-advanced-edit",
"description": "Elemental advanced edit module",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"element",
"elemental",
"content blocks"
],
"license": "MIT",
"authors": [{
"name": "Robert van Lienden",
"email": "[email protected]"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2.0",
"silverstripe/admin": "^1.7@stable",
"silverstripe/cms": "^4.8@stable",
"silverstripe/vendor-plugin": "^1.0",
"dnadesign/silverstripe-elemental": "^4.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"symbiote/silverstripe-phpstan": "^4.0",
"phpstan/phpstan": "^0.11"
},
"autoload": {
"psr-4": {
"RobertVanLienden\\ElementalAdvancedEdit\\": "src/"
}
}
}