-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "bnetdocs/bnetdocs-web",
"description": "BNETDocs - The Battle.net™ protocol documentation website",
"type": "project",
"keywords": [
"battle.net",
"protocol",
"documentation",
"battlenet",
"b.net",
"bnet",
"docs",
"classic",
"warcraft",
"starcraft",
"diablo",
"bot",
"reverse",
"engineer"
],
"homepage": "https://github.com/BNETDocs/bnetdocs-web",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Caaaaarrrrlll",
"email": "[email protected]"
}
],
"config": {
"vendor-dir": "lib"
},
"autoload": {
"psr-4": {
"BNETDocs\\": "src/"
}
},
"require": {
"carlbennett/php-mvc": "dev-main",
"erusev/parsedown": "^1.7",
"ext-curl": "*",
"ext-gmp": "*",
"ext-http": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mcrypt": "*",
"ext-pdo": "*",
"geoip2/geoip2": "~2.0",
"php-64bit": "^8.1",
"phpmailer/phpmailer": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
}
}