-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.3 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
{
"name": "wpezpz/tweaks",
"type": "wordpress-plugin",
"description": "Take the control of your WordPress Customized, Efficient, and Secure",
"homepage": "https:\/\/wpezpzdev.com",
"license": "GPL-3.0",
"authors": [
{
"name": "WP EzPz",
"email": "[email protected]",
"homepage": "https://wpezpzdev.com"
}
],
"require": {
"php": ">=7.0",
"cmb2\/cmb2": "2.10.x",
"composer\/installers": "1.x",
"wpbp\/template": "1.0.*",
"micropackage\/requirements": "^1.0"
},
"require-dev": {
"ergebnis\/composer-normalize": "^2.6"
},
"extra": {
"installer-paths": {
"vendor\/{$name}\/": [
"cmb2\/cmb2"
]
}
},
"autoload": {
"psr-4": {
"EZPZ_TWEAKS\\Backend\\": "backend\/",
"EZPZ_TWEAKS\\Frontend\\": "frontend\/",
"EZPZ_TWEAKS\\Internals\\": "internals\/",
"EZPZ_TWEAKS\\Integrations\\": "integrations\/",
"EZPZ_TWEAKS\\Engine\\": "engine\/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"ergebnis/composer-normalize": true
}
}
}