forked from sheadawson/silverstripe-quickaddnew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1 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
{
"name": "sheadawson/quickaddnew",
"description": "A decorator for form fields that manage object relationships, to allow adding a new object on the fly through a dialog window. It can handle has_one, has_many or many_many relationships. At the moment it has been tested / works on DropdownField and ListboxField. It works both in the CMS and in the frontend.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"forms"
],
"homepage": "http://github.com/sheadawson/silverstripe-quickaddnew",
"authors": [
{
"name": "Shea Dawson",
"email": "[email protected]"
}
],
"require": {
"silverstripe/framework": "4.*",
"composer/installers": "*"
},
"autoload": {
"psr4": {
"QuickAddNew\\": "code/"
}
},
"replace": {
"silverstripe/quickaddnew": "*"
},
"extra": {
"expose": [
"css",
"javascript"
]
}
}