-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.01 KB
/
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
35
36
37
38
{
"name": "jasonw4331/luckperms",
"description": "A permissions plugin for PocketMine-MP servers based on lucko/LuckPerms",
"type": "library",
"license": "lgpl-3.0-or-later",
"authors": [{
"name": "jasonw4331",
"email": "[email protected]"
}],
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"jasonw4331\\LuckPerms\\": "/src"
}
},
"require": {
"cortexpe/commando": "dev-master",
"sof3/libasynql": "dev-pm5",
"sof3/await-generator": "^3.5.2"
},
"require-dev": {
"phpstan/phpstan": "^1",
"pocketmine/pocketmine-mp": "^5.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/extension-installer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.11"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"make-baseline": "@php ./vendor/bin/phpstan analyze -b phpstan-baseline.php -c phpstan.neon.dist --allow-empty-baseline",
"fix-codestyle": "@php ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --verbose --diff"
}
}