-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 807 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 807 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": "knowthecode/updevtools",
"description": "UpDevTools - A Suite of Developer Tools for WordPress development.",
"type": "wordpress-plugin",
"homepage": "https://github.com/KnowTheCode/UpDevTools",
"license": "GPL-2.0+",
"require": {
"php": "^5.6 || ^7",
"kint-php/kint": "^1",
"filp/whoops": "^2"
},
"suggest": {
"johnbillion/query-monitor": "Monitors database and cache queries as well as provides an awesome amount of information to help you."
},
"autoload": {
"files": [
"src/Support/whoops-loader.php",
"src/Admin/admin-color.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/KnowTheCode/UpDevTools/issues",
"source": "https://github.com/KnowTheCode/UpDevTools"
}
}