-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "dmhendricks/wordpress-base-plugin",
"type": "wordpress-plugin",
"description": "A bloilerplate for WordPress plugins",
"keywords": [
"wordpress",
"plugin",
"boilerplate",
"carbonfields"
],
"homepage": "https://2lab.net",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel M. Hendricks",
"homepage": "https://danhendricks.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/dmhendricks/wordpress-base-plugin/issues/",
"wiki": "https://github.com/dmhendricks/wordpress-base-plugin/wiki/",
"source": "https://github.com/dmhendricks/wordpress-base-plugin/"
},
"require": {
"php": ">=7.0",
"wpbp/cpt_columns": "1.0.*",
"dmhendricks/wordpress-toolkit": "^0.4.1",
"johnbillion/extended-cpts": "4.3.*",
"composer/installers": "^1.0.6",
"seravo/wp-custom-bulk-actions": "^0.1.4",
"underdev/requirements": "^1.3"
},
"autoload": {
"psr-4": {
"Yours\\Plugin\\": "app/",
"WPBP\\CPT_COLUMNS\\": "vendor/wpbp/cpt_columns/"
},
"files": [
"vendor/seravo/wp-custom-bulk-actions/custom-bulk-actions.php"
]
}
}