-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
48 lines (48 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
{
"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",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Shea Dawson",
"email": "[email protected]"
},
{
"name": "LeKoala",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8",
"silverstripe/recipe-plugin": "^1 || ^2",
"silverstripe/vendor-plugin": "^1 || ^2",
"silverstripe/framework": "^4.4 || ^5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"extra": {
"expose": [
"client"
]
},
"replace": {
"silverstripe/quickaddnew": "*"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
},
"scripts": {
"lint": "phpcs src/",
"lint-clean": "phpcbf src/",
"test": "phpunit -v"
},
"minimum-stability": "dev",
"prefer-stable": true
}