-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "aiptu/playerwarn",
"description": "A PocketMine-MP plugin that allows server administrators to issue warnings to players and keep track of their warning history.",
"license": "MIT",
"type": "project",
"require": {
"bstats/pocketmine-mp": "^1.0",
"ifera-mc/update-notifier": "dev-master",
"pocketmine/pocketmine-mp": "^5.0",
"sof3/libasynql": "dev-master"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"ergebnis/license": "^2.4",
"ergebnis/php-cs-fixer-config": "^6.26",
"friendsofphp/php-cs-fixer": "^3.54",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.21",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ifera-mc/UpdateNotifier.git"
}
],
"autoload": {
"classmap": [
"src"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"analyze": "phpstan analyze src --memory-limit=2G",
"fix": "php-cs-fixer fix"
}
}