-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
34 lines (34 loc) · 934 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": "thebigcrafter/oh-my-pmmp",
"description": "A plugin manager for PocketMine-MP downloads plugin from PocketMine-MP official plugin repository",
"type": "project",
"require": {
"php": "^8.2",
"sof3/await-generator": "^3.6",
"thebigcrafter/commando": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/phpstan": "^1.10",
"pocketmine/pocketmine-mp": "^5.8"
},
"license": "GPL-3.0-only",
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"thebigcrafter\\omp\\": "src/thebigcrafter/omp"
}
},
"authors": [
{
"name": "thebigcrafter"
}
],
"scripts": {
"analyse": "./vendor/bin/phpstan analyse -c phpstan.neon.dist",
"fix-cs": "./vendor/bin/php-cs-fixer fix"
}
}