-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.07 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
{
"name": "taylordevs/simplysickles",
"description": "a plugin for PMMP that simply adds sickles",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Taylordevs\\Simplysickles\\": "src/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "customiesdevs/customies",
"version": "1.3.0",
"source": {
"url": "https://github.com/CustomiesDevs/Customies.git",
"type": "git",
"reference": "master"
},
"autoload": {
"psr-4": {
"customiesdevs\\customies\\": "src/"
}
}
}
}
],
"authors": [
{
"name": "taylordevs",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10"
},
"require": {
"jasonw4331/libcustompack": "^1.0.1",
"customiesdevs/customies": "^1.3",
"pocketmine/pocketmine-mp": "5.0.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}