-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
38 lines (38 loc) · 1.26 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": "survanetwork/hotblock",
"description": "A funny PvP Minigame",
"version": "1.2.5",
"type": "project",
"keywords": [
"block",
"pocketmine",
"minigame",
"economy",
"pvp"
],
"homepage": "https://plugins.surva.net/#hotblock",
"license": "MIT",
"authors": [
{
"name": "Jarne",
"homepage": "https://github.com/jarne",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/survanetwork/HotBlock/issues",
"source": "https://github.com/survanetwork/HotBlock"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"pocketmine/pocketmine-mp": "^5.4",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"code-analyze": "./vendor/bin/phpstan analyze -c phpstan.neon",
"code-analyze-save-report": "./vendor/bin/phpstan analyze -c phpstan.neon --error-format junit > test-results/phpstan-result/junit.xml",
"check-format": "./vendor/bin/phpcs --standard=PSR12 src",
"check-format-save-report": "./vendor/bin/phpcs --standard=PSR12 --report=junit src > test-results/phpcs-result/junit.xml",
"fix-format": "./vendor/bin/phpcbf --standard=PSR12 src"
}
}