├── .editorconfig ├── .gitignore ├── .travis.yml ├── README.md ├── bin └── install-package-tests.sh ├── command.php ├── composer.json ├── features ├── bootstrap │ ├── FeatureContext.php │ ├── Process.php │ ├── support.php │ └── utils.php ├── extra │ └── no-mail.php ├── query-debug.feature └── steps │ ├── given.php │ ├── then.php │ └── when.php ├── inc └── class-query-debug-command.php ├── utils └── behat-tags.php └── wp-cli.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.lock 3 | node_modules/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-package-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/bin/install-package-tests.sh -------------------------------------------------------------------------------- /command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/command.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/composer.json -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/bootstrap/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/features/bootstrap/Process.php -------------------------------------------------------------------------------- /features/bootstrap/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/features/bootstrap/support.php -------------------------------------------------------------------------------- /features/bootstrap/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runcommand/query-debug/HEAD/features/bootstrap/utils.php -------------------------------------------------------------------------------- /features/extra/no-mail.php: -------------------------------------------------------------------------------- 1 |