-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
53 lines (53 loc) · 1.41 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
{
"name": "ivancraft623/ranksystem",
"description": "A rank and permissions manager for PocketMine-MP",
"type": "project",
"license": "Apache-2.0",
"require": {
"latampmdevs/commando": "dev-pm5",
"latampmdevs/config-updater": "dev-master",
"latampmdevs/update-notifier": "dev-master",
"latampmdevs/formapi": "dev-master",
"ivancraft623/languages": "dev-main",
"sof3/libasynql": "dev-pm5"
},
"require-dev": {
"php": "^8.0",
"pocketmine/pocketmine-mp": "^5.3.0",
"phpstan/phpstan": "1.10.25"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/LatamPMDevs/Commando.git"
},
{
"type": "vcs",
"url": "https://github.com/LatamPMDevs/ConfigUpdater.git"
},
{
"type": "vcs",
"url": "https://github.com/LatamPMDevs/UpdateNotifier.git"
},
{
"type": "vcs",
"url": "https://github.com/LatamPMDevs/FormAPI.git"
},
{
"type": "vcs",
"url": "https://github.com/IvanCraft623/languages.git"
}
],
"minimum-stability": "dev",
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"autoload": {
"psr-0": {
"IvanCraft623\\RankSystem\\": "src"
}
}
}