-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.31 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
51
{
"name": "carmelosantana/ender-hive",
"description": "PocketMine server manager for WordPress.",
"type": "wordpress-plugin",
"license": "GNU General Public License v2",
"authors": [
{
"name": "Carmelo Santana",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CarmeloSantana\\EnderHive\\": "src/"
}
},
"require": {
"php": "^8.0",
"htmlburger/carbon-fields": "^3.3",
"xpaw/php-minecraft-query": "^4.0",
"ramsey/uuid": "^4.3",
"mikehaertl/php-shellcommand": "^1.6",
"woocommerce/action-scheduler": "^3.4",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0",
"s1lentium/iptools": "^1.1",
"kassner/log-parser": "~2.0",
"spatie/ray": "^1.35",
"composer/installers": "^2.2"
},
"scripts": {
"bento": [
"CarmeloSantana\\ReleaseBento\\Package::build"
]
},
"require-dev": {
"carmelosantana/release-bento": "^0.1.0"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"installer-paths": {
"vendor-wordpress/{$name}/": [
"type:wordpress-plugin"
]
}
}
}