-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.07 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
39
40
41
42
43
{
"name": "jasonw4331/libefficientwe",
"description": "A library for efficient world editing operations on PocketMine servers",
"type": "library",
"license": "lgpl-3.0-or-later",
"authors": [{
"name": "jasonw4331",
"email": "jasonwynn10@gmail.com"
}],
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"libEfficientWE\\": "/src/libEfficientWE"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4.6",
"pocketmine/pocketmine-mp": "^4.0.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/extension-installer": "^1.0",
"symfony/filesystem": "^5.4",
"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"
},
"extra": {
"virion": {
"spec": "3.0",
"namespace-root": "libEfficientWE"
}
}
}