framework/php-packages/testing/composer.json
Alexander Skvortsov ce0e5c99a6 Use mockery 1.4
2021-03-06 18:58:07 -05:00

25 lines
570 B
JSON

{
"name": "flarum/testing",
"description": "Automated testing infrastructure for Flarum core and extensions.",
"keywords": ["forum", "discussion"],
"homepage": "https://flarum.org/",
"license": "MIT",
"require": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.0"
},
"require-dev": {
"flarum/core": "^0.1.0-beta"
},
"autoload": {
"psr-4": {
"Flarum\\Testing\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}