framework/php-packages/testing/composer.json
Sami Mazouz 6b336c5ea8
chore: update dependencies (#4012)
* chore: phpunit 10

* chore: config

* Apply fixes from StyleCI

* chore: phpunit 11 (php 8.2 minimum requirement)

* feat: laravel 11

* Apply fixes from StyleCI

* feat: carbon v3

* fixes
2024-08-06 16:50:09 +01:00

40 lines
872 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.5",
"phpunit/phpunit": "^11.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": "2.x-dev"
}
},
"repositories": [{
"type": "path",
"url": "../../*/*"
}],
"minimum-stability": "dev",
"prefer-stable": true
}