-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (34 loc) · 869 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": "derralf/elemental-codeeditorfield",
"description": "A content block to write raw code, e.g. HTML",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"elemental",
"content blocks"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"dnadesign/silverstripe-elemental": "3.0.x-dev",
"silverstripe/vendor-plugin": "^1.0",
"jinjie/codeeditorfield": "^0.0.4"
},
"suggest": {
"derralf/elemental-styling": "Adds some styling options"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"Derralf\\Elements\\CodeEditorField\\": "src/"
}
}
}