-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 743 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 743 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
{
"name": "arraypress/cpt-inline-list-table",
"description": "A WordPress plugin library providing an easy way to enhance admin interfaces with sortable, duplicable custom post type list tables for conditional rules, notices and more.",
"homepage": "https://github.com/arraypress/cpt-inline-list-table/",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "David Sherlock",
"homepage": "https://arraypress.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"ArrayPress\\WP\\CPT_Inline_List_Table\\": "src/"
},
"files": [
"src/Functions.php",
"src/Helper.php"
]
},
"minimum-stability": "stable"
}