-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
35 lines (35 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
{
"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",
"jjgrainger/posttypes": "^2.0.1",
"tgmpa/tgm-plugin-activation": "^2.6.1",
"dmhendricks/wordpress-toolkit": "^0.4.1",
"underdev/requirements": "^1.3",
"inc2734/wp-customizer-framework": "3.2.3",
"composer/installers": "^1.0.6"
},
"autoload": {
"psr-4": {
"VendorName\\PluginName\\": "app/",
"Carbon_Fields\\Datastore\\Datastore\\": "app/Datastores/"
}
}
}