forked from felixarntz/options-definitely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 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
53
54
55
56
57
58
{
"name": "felixarntz/options-definitely",
"description": "This framework plugin makes adding options screens with sections and fields to WordPress very simple, yet flexible.",
"version": "0.6.1",
"license": "GPL-3.0",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"definitely",
"framework",
"library",
"developer",
"admin",
"backend",
"structured data",
"ui",
"api",
"cms",
"options",
"settings",
"settings screen",
"tabs",
"sections",
"metaboxes",
"fields",
"help tabs"
],
"homepage": "https://wordpress.org/plugins/options-definitely/",
"authors": [
{
"name": "Felix Arntz",
"email": "[email protected]",
"homepage": "http://leaves-and-love.net",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/felixarntz/options-definitely/issues"
},
"config": {
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"WPOD\\": "inc/WPOD/"
},
"files": [
"inc/functions.php"
]
},
"require": {
"composer/installers": "~1.0",
"felixarntz/wpdlib": "0.6.2",
"felixarntz/leavesandlove-wp-plugin-util": "2.0.1"
}
}