-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
52 lines (52 loc) · 1.26 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
52
{
"name": "plugin-master/plugin-master",
"description": "An Application Development Framework for Wordpress.",
"license": "MIT",
"homepage": "https://github.com/emrancu/PluginMaster",
"support": {
"issues": "https://github.com/emrancu/PluginMaster/issues",
"source": "https://github.com/emrancu/PluginMaster"
},
"authors": [
{
"name": "AL EMRAN",
"email": "[email protected]"
}
],
"keywords": [
"framework",
"PluginMaster",
"WordPress Plugin Development framework"
],
"type": "project",
"autoload": {
"classmap": [],
"files": [
"bootstrap/System/Helpers/helpers.php"
],
"psr-4": {
"PluginMaster\\App\\": "app/",
"PluginMaster\\Bootstrap\\": "bootstrap/",
"PluginMaster\\Database\\": "database/"
}
},
"require": {
"php": "^7.0|^8.0",
"plugin-master/contracts": "^1.0",
"plugin-master/db": "^1.0",
"plugin-master/request": "^1.0",
"plugin-master/validator": "^1.0",
"plugin-master/foundation": "^1.0",
"plugin-master/schema": "^1.0"
},
"require-dev": {
"automattic/jetpack-autoloader": "2.10.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true
}
}
}