Skip to content

Commit e865121

Browse files
Updated readme and cleaned up composer.
1 parent 3ba6217 commit e865121

File tree

102 files changed

+11555
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+11555
-55
lines changed

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# UpDevTools
22

3-
UpDevTools - An integrated suite of developer tools for your development environment including Kint, Whoops, Mockery, PHPUnit, Carbon, and Monolog.
3+
UpDevTools - An integrated suite of developer tools for your development environment including Kint and Whoops.
44

55
As a WordPress developer, you need development tools that put information in your hands. We need one handy-dandy plugin that has all of our goodies to do our thang. UpDevTools seeks to solve that problem.
66

@@ -33,15 +33,6 @@ You are going to want to add on these plugins too:
3333

3434
1. [Query Monitor](https://github.com/johnbillion/query-monitor) - We use Query Monitor to analyze the queries.
3535

36-
## Enhancements
37-
38-
See the [enhancement requests](https://github.com/KnowTheCode/UpDevTools/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) for the current list of enhancements. We do plan to integrate Query Monitor into the platform, as it's vital to all WordPress development work.
39-
40-
We will also integrate the following packages in the future for better reporting:
41-
42-
1. [Carbon](http://carbon.nesbot.com/docs/) - A simple PHP DateTime wrapper
43-
2. [Monolog](https://github.com/Seldaek/monolog) - PHP Logger
44-
4536
## Contributions
4637

47-
See [Contributing](https://github.com/KnowTheCode/UpDevTools/CONTRIBUTING.md) for details.
38+
See [Contributing](https://github.com/KnowTheCode/UpDevTools/CONTRIBUTING.md) for details.

composer.json

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,27 @@
11
{
2-
"name" : "knowthecode/updevtools",
3-
"description" : "UpDevTools - A Suite of Developer Tools for WordPress development.",
4-
"type" : "wordpress-plugin",
5-
"keywords" : ["wordpress", "wp", "plugin"],
6-
"homepage" : "https://github.com/KnowTheCode/UpDevTools",
7-
"license" : "GPL-2.0+",
8-
"require": {
9-
"php" : ">=5.6",
10-
"kint-php/kint" : "^1",
11-
"filp/whoops": "^2"
12-
},
13-
"suggest": {
14-
"johnbillion/query-monitor": "Monitors database and cache queries as well as provides an awesome amount of information to help you."
15-
},
16-
"autoload" : {
17-
"files": [
18-
"src/Support/whoops-loader.php",
19-
"src/Admin/admin-color.php"
20-
]
21-
},
22-
"extra": {
23-
"branch-alias": {
24-
"dev-master": "1.0-dev"
25-
}
26-
},
27-
"config": {
28-
"vendor-dir": "assets/vendor"
29-
},
30-
"minimum-stability": "dev"
2+
"name": "knowthecode/updevtools",
3+
"description": "UpDevTools - A Suite of Developer Tools for WordPress development.",
4+
"type": "wordpress-plugin",
5+
"homepage": "https://github.com/KnowTheCode/UpDevTools",
6+
"license": "GPL-2.0+",
7+
"require": {
8+
"php": "^5.6 || ^7",
9+
"kint-php/kint": "^1",
10+
"filp/whoops": "^2"
11+
},
12+
"suggest": {
13+
"johnbillion/query-monitor": "Monitors database and cache queries as well as provides an awesome amount of information to help you."
14+
},
15+
"autoload": {
16+
"files": [
17+
"src/Support/whoops-loader.php",
18+
"src/Admin/admin-color.php"
19+
]
20+
},
21+
"minimum-stability": "dev",
22+
"prefer-stable": true,
23+
"support": {
24+
"issues": "https://github.com/KnowTheCode/UpDevTools/issues",
25+
"source": "https://github.com/KnowTheCode/UpDevTools"
26+
}
3127
}

composer.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/autoload.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
3+
// autoload.php @generated by Composer
4+
5+
require_once __DIR__ . '/composer' . '/autoload_real.php';
6+
7+
return ComposerAutoloaderInitcdce1547e94626464cb6e151646a63e1::getLoader();

0 commit comments

Comments
 (0)