-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.31 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/fancygenerators",
"description": "A collection of new level Generators",
"version": "1.1.1",
"type": "project",
"keywords": [
"world",
"generator",
"pocketmine",
"void",
"islands"
],
"homepage": "https://plugins.surva.net/#fancygenerators",
"license": "MIT",
"authors": [
{
"name": "Jarne",
"homepage": "https://github.com/jarne",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/survanetwork/FancyGenerators/issues",
"source": "https://github.com/survanetwork/FancyGenerators"
},
"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"
}
}