forked from dmhendricks/wordpress-toolkit
-
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) · 766 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 766 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": "dmhendricks/wordpress-toolkit",
"description": "A collection of helper classes and functions for WordPress plugins and themes.",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/dmhendricks/wordpress-toolkit",
"authors": [
{
"name": "Daniel M. Hendricks",
"homepage": "https://danhendricks.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/dmhendricks/wordpress-toolkit",
"wiki": "https://github.com/dmhendricks/wordpress-toolkit/wiki",
"issues": "https://github.com/dmhendricks/wordpress-toolkit/issues"
},
"require": {
"php": ">=5.6.4",
"vlucas/phpdotenv": "^3.0.0"
},
"autoload": {
"psr-4": {
"WordPress_ToolKit\\": "core/"
}
}
}