-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.17 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "hebbinkpro/pocketmap",
"description": "A dynamic web-based world map for PocketMine-MP servers.",
"license": "GPL-3.0-only",
"type": "project",
"authors": [
{
"name": "Hebbinkpro"
}
],
"require": {
"hebbinkpro/pmmp-webserver": "^0.5.4",
"muqsit/simple-packet-handler": "0.1.5"
},
"require-dev": {
"php": "^8.1",
"pocketmine/pocketmine-mp": "^5.13.0",
"himbeer/libskin": "^2.1.1",
"paroxity/commando": "^3.3.0",
"phpstan/phpstan": "^1.10.3",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpstan/extension-installer": "^1.2.0"
},
"autoload": {
"psr-4": {
"Hebbinkpro\\PocketMap\\": "src/Hebbinkpro/PocketMap"
}
},
"repositories": {
"commando": {
"type": "package",
"package": {
"name": "paroxity/commando",
"version": "3.3.0",
"source": {
"url": "https://github.com/Paroxity/Commando.git",
"type": "git",
"reference": "master"
}
}
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse -c ./phpstan.neon.dist"
}
}