forked from sheadawson/silverstripe-shortcodable
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 951 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
36
37
38
{
"name": "restruct/silverstripe-shortcodable",
"description": "Provides a simple button to insert Shortcodes into the HTMLEditorField + an API for developers to define shortcodes",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"shortcode"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Restruct",
"email": "[email protected]"
},
{
"name": "Shea Dawson",
"email": "[email protected]"
}
],
"require": {
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/framework": "^4",
"restruct/silverstripe-simpler": "^0.1"
},
"replace": {
"sheadawson/silverstripe-shortcodable": "*"
},
"autoload": {
"psr-4": {
"Shortcodable\\": "src/"
}
},
"extra": {
"expose": [
"client/dist"
]
}
}