├── .gitignore ├── .travis.yml ├── LICENSE ├── ci └── setup_codesniffer.sh ├── class-wp-cli.php ├── codesniffer.ruleset.xml ├── composer.json ├── php ├── class-debug-bar-rewrite-testing-panel.php └── class-rewrite-testing-tests.php ├── readme.txt └── rewrite-testing.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /ci/setup_codesniffer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/ci/setup_codesniffer.sh -------------------------------------------------------------------------------- /class-wp-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/class-wp-cli.php -------------------------------------------------------------------------------- /codesniffer.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/codesniffer.ruleset.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/composer.json -------------------------------------------------------------------------------- /php/class-debug-bar-rewrite-testing-panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/php/class-debug-bar-rewrite-testing-panel.php -------------------------------------------------------------------------------- /php/class-rewrite-testing-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/php/class-rewrite-testing-tests.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/readme.txt -------------------------------------------------------------------------------- /rewrite-testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/rewrite-testing/HEAD/rewrite-testing.php --------------------------------------------------------------------------------