-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
46 lines (46 loc) · 868 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "plancke/hypixel-php",
"description": "A PHP wrapper for the Hypixel Public API",
"homepage": "https://plancke.io",
"license": "MIT",
"authors": [
{
"name": "Plancke",
"email": "[email protected]",
"role": "Developer"
}
],
"keywords": [
"hypixel",
"plancke",
"api",
"wrapper"
],
"support": {
"issues": "https://github.com/Plancke/hypixel-php/issues"
},
"require": {
"php": "^7.0",
"ext-curl": "*",
"ext-json": "*"
},
"suggest": {
"ext-mongodb": "^1.4.2",
"mongodb/mongodb": "^1.4.2"
},
"autoload": {
"psr-4": {
"Plancke\\HypixelPHP\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "8.0.6",
"ext-mongodb": "^1.4.2",
"mongodb/mongodb": "^1.4.2"
},
"autoload-dev": {
"psr-4": {
"Plancke\\Tests\\": "tests/"
}
}
}