-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 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
{
"name": "jasonw4331/simplereplies",
"description": "A PocketMine plugins which adds a command to reply to the last person who messaged you",
"type": "library",
"license": "lgpl-3.0-or-later",
"authors": [{
"name": "jasonw4331",
"email": "[email protected]"
}],
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"jasonw4331\\SimpleReplies\\": "/src"
}
},
"require-dev": {
"pocketmine/pocketmine-mp": "^5.0|^4.0",
"phpstan/phpstan": "*",
"phpstan/phpstan-strict-rules": "*",
"phpstan/extension-installer": "*",
"friendsofphp/php-cs-fixer": "*"
},
"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"
}
}