silverstripe-frameworktest/composer.json
Guy Sartorelli 7b9778253f
MNT Don't require silverstripe/registry (#123)
Just because registry needs frameworktest doesn't mean frameworktest
should need registry
2022-09-15 17:02:03 +12:00

38 lines
923 B
JSON

{
"name": "silverstripe/frameworktest",
"description": "Aids core and module developers in testing their code against a set of sample data and behaviour.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"frameworktest",
"testing"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
}
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"silverstripe/cms": "^5",
"guzzlehttp/guzzle": "^7.4.5",
"fzaninotto/faker": "^1.9.2",
"silverstripe/vendor-plugin": "^2"
},
"extra": {
"expose": [
"client/dist",
"css",
"images"
]
},
"autoload": {
"psr-4": {
"SSilverStripe\\FrameworkTest\\": "code/"
}
}
}