mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
3e7294ea70
This conflicts with an earlier commit (cfba4cb
), but after talking to Robbie this new commit is consistent with how we handle other recipes (CWP and core). Both ways are viable, but we've implicitly standardised on this way (set minor release constraints in the main release branch, e.g. constraint to recipe:4.5.x-dev on installer:4.x-dev)
34 lines
814 B
JSON
34 lines
814 B
JSON
{
|
|
"name": "silverstripe/installer",
|
|
"type": "silverstripe-recipe",
|
|
"description": "The SilverStripe Framework Installer",
|
|
"require": {
|
|
"php": ">=5.6.0",
|
|
"silverstripe/recipe-plugin": "^1.2",
|
|
"silverstripe/recipe-cms": "4.5.x-dev",
|
|
"silverstripe-themes/simple": "~3.2.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7"
|
|
},
|
|
"extra": {
|
|
"project-files": [
|
|
"app/_config/*",
|
|
".env.example"
|
|
],
|
|
"public-files": [
|
|
"assets/*",
|
|
"favicon.ico"
|
|
],
|
|
"branch-alias": {
|
|
"4.x-dev": "4.5.x-dev"
|
|
},
|
|
"resources-dir": "_resources"
|
|
},
|
|
"config": {
|
|
"process-timeout": 600
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev"
|
|
}
|