mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 01:36:53 +08:00
40 lines
871 B
JSON
40 lines
871 B
JSON
{
|
|
"name": "flarum/testing",
|
|
"description": "Automated testing infrastructure for Flarum core and extensions.",
|
|
"keywords": [
|
|
"forum",
|
|
"discussion"
|
|
],
|
|
"homepage": "https://flarum.org/",
|
|
"license": "MIT",
|
|
"require": {
|
|
"ext-json": "*",
|
|
"mockery/mockery": "^1.4",
|
|
"phpunit/phpunit": "^9.0"
|
|
},
|
|
"require-dev": {
|
|
"flarum/core": "*@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\Testing\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Flarum\\Testing\\Tests\\": "src/tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-main": "1.x-dev"
|
|
}
|
|
},
|
|
"repositories": [{
|
|
"type": "path",
|
|
"url": "../../*/*"
|
|
}],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|