FIX Avoid using self.version in composer.json

When using create-project, self.version doesnt work - the checkout looses the reference to the version
Fix by explicity referencing the version instead
This commit is contained in:
Hamish Friedlander 2012-11-26 11:42:19 +13:00
parent 2debb0ddfd
commit fbaab96324
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
"description": "The SilverStripe Framework Installer",
"require": {
"php": ">=5.3.2",
"silverstripe/cms": "self.version",
"silverstripe/framework": "self.version",
"silverstripe/cms": "3.0.*@stable",
"silverstripe/framework": "3.0.*@stable",
"silverstripe-themes/simple": "*"
},
"require-dev": {