-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 1.04 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": "maxime-rainville/recipe-admin",
"description": "Starting point for a admin only SilverStripe project.",
"type": "silverstripe-recipe",
"require": {
"silverstripe/recipe-plugin": "^2",
"silverstripe/recipe-core": "^5",
"silverstripe/admin": "^2",
"silverstripe/reports": "^5",
"silverstripe/siteconfig": "^5",
"silverstripe/login-forms": "^5"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maxime Rainville",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"project-files": [
"app/*",
"public/*"
],
"resources-dir": "_resources"
},
"suggest": {
"silverstripe/asset-admin": "Allows file management in your portal.",
"silverstripe/versioned": "Allows you to keep track of you model's change over time",
"silverstripe/versioned-admin": "Allows you to restored archived records"
}
}