silverstripe-frameworktest/composer.json

35 lines
944 B
JSON
Raw Normal View History

{
2022-03-08 05:10:14 +01:00
"name": "silverstripe/frameworktest",
"description": "Aids core and module developers in testing their code against a set of sample data and behaviour.",
"type": "silverstripe-vendormodule",
2022-03-08 05:10:14 +01:00
"keywords": ["silverstripe", "frameworktest", "testing"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
}
],
"require": {
2022-07-05 12:06:20 +02:00
"php": "^7.3 || ^8.0",
2022-03-08 05:10:14 +01:00
"silverstripe/framework": "^4",
"silverstripe/cms": "^4",
2022-07-04 05:52:07 +02:00
"guzzlehttp/guzzle": "^6.3 || ^7.3",
2022-03-08 05:10:14 +01:00
"fzaninotto/faker": "^1.7",
"silverstripe/vendor-plugin": "^1",
"silverstripe/registry": "^2"
},
"extra": {
"expose": [
"client/dist",
"css",
2018-10-18 00:04:28 +02:00
"images"
]
},
"autoload": {
"psr-4": {
"SSilverStripe\\FrameworkTest\\": "code/"
}
}
2013-05-07 13:05:00 +02:00
}