-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
37 lines (37 loc) · 1.01 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
{
"name": "sheadawson/silverstripe-shortcodable",
"type": "silverstripe-vendormodule",
"description": "Provides a GUI for CMS users to insert Shortcodes into the HTMLEditorField + an API for developers to define Shortcodable DataObjects and Views",
"keywords": [
"silverstripe",
"shortcode"
],
"license": "BSD License",
"authors": [
{
"name": "Shea Dawson",
"email": "shea@livesource.co.nz"
}
],
"require": {
"composer/installers": "*",
"silverstripe/framework": "^4"
},
"autoload": {
"psr-4": {
"SilverStripe\\Shortcodable\\": "src/"
}
},
"support": {
"issues": "https://github.com/sheadawson/silverstripe-shortcodable/issues"
},
"extra": {
"installer-name": "shortcodable",
"expose": [
"css",
"images",
"javascript",
]
},
"homepage": "https://github.com/sheadawson/silverstripe-shortcodable"
}