-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 871 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 871 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": "hazardteam/autoclearchunk",
"description": "A PocketMine-MP plugin that automatically clears chunks in specified worlds at regular intervals.",
"license": "MIT",
"type": "project",
"require": {
"pocketmine/pocketmine-mp": "^5.0",
"ifera-mc/update-notifier": "dev-master"
},
"require-dev": {
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ifera-mc/UpdateNotifier.git"
}
],
"autoload": {
"psr-4": {
"HazardTeam/AutoClearChunk\\": "/src"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}