forked from pixline/wp-cli-php-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.php
41 lines (30 loc) · 851 Bytes
/
default.php
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
35
36
37
38
39
40
41
<?php
/**
* wp-cli devtools
*
* Wrappers around common development utilities
*
* @author Paolo Tresso <[email protected]>
* @version 0.2.2
*/
// work in progress: php-minify
#include( 'commands/minify-command.php' );
// work in progress: PHP Coverage
#include( 'commands/phpcov-command.php' );
// PHP Copy/Paste Detector
include( 'commands/phpcpd-command.php' );
// PHP CodeSniffer
include( 'commands/phpcs-command.php' );
// PHP Dead Code Detector
include( 'commands/phpdcd-command.php' );
// work in progress: PHP Documentor
#include( 'commands/phpdoc-command.php' );
// PHP Lines of Code
include( 'commands/phploc-command.php' );
// PHP Mess Detector
include( 'commands/phpmd-command.php' );
// PHP Report (bundled commands)
include( 'commands/phpreport-command.php' );
// PHPunit
include( 'commands/phpunit-command.php' );
?>