FIX Use safer semver constraint for framework

>=3.1 will match 4.0, so switching to use ^3.1 which won't.
This commit is contained in:
Robbie Averill 2018-04-20 13:41:51 +12:00 committed by GitHub
parent 9884155cf1
commit cdee6d1fe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@
"url": "git@github.com:colymba/GridFieldBulkEditingTools.git"
}],
"require": {
"silverstripe/framework": ">=3.1"
"silverstripe/framework": "^3.1"
}
}