-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1011 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "shockedplot7560/pmmp-unit",
"description": "Integration testing framework for PocketMine-MP",
"authors": [
{
"name": "ShockedPlot7560",
"email": "no-reply@tchallon.fr"
}
],
"autoload": {
"psr-4": {
"ShockedPlot7560\\PmmpUnit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShockedPlot7560\\PmmpUnit\\tests\\normal\\": "tests/pmmpunit/suitetest/normal/tests",
"ShockedPlot7560\\PmmpUnit\\tests\\withPlugin\\": "tests/pmmpunit/suitetest/with_plugin/tests"
}
},
"require": {
"php": "^8.1 || ^8.2",
"react/promise": "^3.0",
"webmozart/assert": "^1.11",
"pocketmine/callback-validator": "^1.0",
"respect/stringifier": "^2.0",
"sof3/await-generator": "^3.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "^1.10",
"pocketmine/pocketmine-mp": "^5.16"
}
}