-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.27 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "gamefriendsteam/currencyapi",
"type": "project",
"require": {
"pocketmine/pocketmine-mp": "^5.0.0",
"muqsit/simple-packet-handler": "^0.1.6",
"jojoe77777/formapi": "dev-master",
"cortexpe/commando": "dev-master"
},
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"gft\\cur\\": "src/"
},
"classmap": [
"vendor/jojoe77777/formapi/src",
"vendor/cortexpe/commando/src"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "jojoe77777/formapi",
"version": "dev-master",
"dist": {
"type": "zip",
"url": "https://github.com/jojoe77777/FormAPI/archive/refs/heads/master.zip"
}
}
},
{
"type": "package",
"package": {
"name": "cortexpe/commando",
"version": "dev-master",
"dist": {
"type": "zip",
"url": "https://github.com/CortexPE/Commando/archive/refs/heads/master.zip"
}
}
}
],
"require-dev": {
"phpstan/phpstan": "^2.1"
}
}