-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 740 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 740 Bytes
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
{
"name": "buchwasa/scorefactory",
"description": "Simple library for making scoreboards in PocketMine-MP",
"type": "library",
"authors": [
{
"name": "Tayyab R.",
"homepage": "https://github.com/Ifera",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"pocketmine/pocketmine-mp": "^4.0.0 || ^5.0.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.99"
},
"extra": {
"virion":{
"spec": "3.0",
"namespace-root": "jackmd\\scorefactory"
}
},
"license": "GPL-3.0-only",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"": "src/"
}
}
}