silverstripe-frameworktest/composer.json

38 lines
921 B
JSON
Raw Permalink 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-08-04 07:41:42 +02:00
"keywords": [
"silverstripe",
"frameworktest",
"testing"
],
2022-03-08 05:10:14 +01:00
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
}
],
"require": {
2022-08-04 07:41:42 +02:00
"php": "^8.1",
2024-02-19 05:33:53 +01:00
"silverstripe/framework": "^6",
"silverstripe/cms": "^6",
"guzzlehttp/guzzle": "^7.5",
"fzaninotto/faker": "^1.9.2",
"silverstripe/vendor-plugin": "^2"
2022-03-08 05:10:14 +01:00
},
"extra": {
"expose": [
"client/dist",
"css",
2018-10-18 00:04:28 +02:00
"images"
]
},
"autoload": {
"psr-4": {
"SSilverStripe\\FrameworkTest\\": "code/"
}
}
2024-02-19 05:33:53 +01:00
}