-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 964 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
{
"name": "i-lateral/silverstripe-fancy-form-scaffolder",
"description": "Allows you to defined CMS form structure via config.yml",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/i-lateral/silverstripe-fancy-form-scaffolder",
"keywords": [
"silverstripe",
"admin",
"Forms",
"Scaffold"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "ilateral",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/i-lateral/silverstripe-fancy-form-scaffolder/issues"
},
"require": {
"silverstripe/framework": ">=4.2",
"silverstripe/admin": "~1.0"
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\FancyFormScaffolder\\": "src/",
"ilateral\\SilverStripe\\FancyFormScaffolder\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}