mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
ea72c5def0
Although the original ticket recommended increasing our minimum-stability, this change gives us the best of both worlds. - Where stable packages are available and meet the requirements, they will be used. - Where stable packages aren’t available or they don’t meet the dependency requirements, non-stable packages are still allowed. As part of this I have also tightened up the silverstripe-themes req version, as “*” is an anti-pattern. The versioning of the theme has rightly split off from the versioning of the framework; it looks like 3.1.* is what we should expect. Arguably, we could set the dependency to ~3.1, but in this case I think it’s fine to be conservative.
21 lines
486 B
JSON
21 lines
486 B
JSON
{
|
|
"name": "silverstripe/installer",
|
|
"description": "The SilverStripe Framework Installer",
|
|
"require": {
|
|
"php": ">=5.3.3",
|
|
"silverstripe/cms": "self.version",
|
|
"silverstripe/framework": "self.version",
|
|
"silverstripe/reports": "self.version",
|
|
"silverstripe/siteconfig": "self.version",
|
|
"silverstripe-themes/simple": "3.1.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/PHPUnit": "~3.7"
|
|
},
|
|
"config": {
|
|
"process-timeout": 600
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev"
|
|
}
|