framework/php-packages/testing/composer.json

40 lines
872 B
JSON
Raw Normal View History

2021-01-13 14:20:59 +08:00
{
"name": "flarum/testing",
"description": "Automated testing infrastructure for Flarum core and extensions.",
"keywords": [
"forum",
"discussion"
],
2021-01-13 14:20:59 +08:00
"homepage": "https://flarum.org/",
"license": "MIT",
"require": {
"ext-json": "*",
2022-09-13 16:55:30 +08:00
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^11.0"
2021-01-13 14:20:59 +08:00
},
"require-dev": {
"flarum/core": "*@dev"
2021-01-13 14:20:59 +08:00
},
"autoload": {
"psr-4": {
"Flarum\\Testing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flarum\\Testing\\Tests\\": "src/tests/"
}
},
2021-01-13 14:20:59 +08:00
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
2021-01-13 14:20:59 +08:00
}
2022-03-12 07:02:49 +08:00
},
"repositories": [{
"type": "path",
"url": "../../*/*"
}],
"minimum-stability": "dev",
"prefer-stable": true
2021-01-13 14:20:59 +08:00
}