-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 859 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 859 Bytes
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
{
"name": "thewebsolver/tws-cpt-framework",
"description": "Custom Post Type framework to register WordPress Custom Post Types and Taxonomies.",
"license": "GPL-3.0-or-later",
"version": "2.0",
"authors": [
{
"name": "hsehszroc",
"email": "shesh@thewebsolver.com"
}
],
"keywords": [
"WordPress",
"Plugin",
"cpt",
"framework",
"custom-post-type",
"custom-taxonomy"
],
"autoload": {
"psr-4": {
"TheWebSolver\\CPT\\": [
"Includes"
]
}
},
"require": {
"php": ">=7.0"
},
"suggest": {
"thewebsolver/tws-setting-framework": "WordPress Settings (Options) API framework to manage core WordPress Settings API and implement onboarding step options easily.",
"thewebsolver/tws-admin-onboarding": "An easy and extendible admin onboarding wizard for WordPress Plugins and Themes."
}
}