-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 978 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 978 Bytes
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
{
"name": "reinfyteam/discordwebhookapi",
"description": "A PocketMine-MP Virion to easily send messages via Discord Webhooks",
"type": "library",
"require": {
"php": ">=8.2",
"pocketmine/pocketmine-mp": "^5.42.1"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"friendsofphp/php-cs-fixer": "^3.94.2"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"scripts": {
"format": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"format:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --diff",
"analyze": "vendor/bin/phpstan"
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"virion": {
"spec": "3.0",
"namespace-root": "CortexPE\\DiscordWebhookAPI"
}
}
}