-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
42 lines (42 loc) · 1.08 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
{
"name": "jaxkdev/discordbot",
"type": "library",
"description": "A PocketMine-MP Plugin that hosts your very own discord bot using DiscordPHP.",
"license": "OSL-3.0",
"authors": [
{
"name": "JaxkDev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JaxkDev\\DiscordBot\\": "src"
}
},
"autoload-dev": {
"files": [
"src/Libs/React/Promise/functions.php"
]
},
"require": {
"php": "^8.1",
"php-64bit": "*",
"team-reflex/discord-php": "dev-master#aa3f3bc",
"react/promise": "v2.10.0",
"pocketmine/binaryutils": "0.2.4",
"composer/ca-bundle": "^1.3"
},
"require-dev": {
"phpstan/phpstan": "^1",
"phpstan/extension-installer": "^1",
"phpstan/phpstan-strict-rules": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"pocketmine/pocketmine-mp": "^5"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}