├── .travis.yml ├── README.md ├── admin └── notices.php ├── bin └── install-wp-tests.sh ├── boot.php ├── composer.json ├── lib ├── agent.php ├── body.php ├── headers.php ├── jsonapi.php ├── main.php ├── method.php ├── page.php ├── path.php ├── route.php └── template.php ├── phpunit.xml ├── readme.txt ├── tests ├── bootstrap.php ├── instructions.txt └── test-body.php ├── underscore.php └── wp-on-routes.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/README.md -------------------------------------------------------------------------------- /admin/notices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/admin/notices.php -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /boot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/boot.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/composer.json -------------------------------------------------------------------------------- /lib/agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/agent.php -------------------------------------------------------------------------------- /lib/body.php: -------------------------------------------------------------------------------- 1 | route); -------------------------------------------------------------------------------- /lib/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/headers.php -------------------------------------------------------------------------------- /lib/jsonapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/jsonapi.php -------------------------------------------------------------------------------- /lib/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/main.php -------------------------------------------------------------------------------- /lib/method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/method.php -------------------------------------------------------------------------------- /lib/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/page.php -------------------------------------------------------------------------------- /lib/path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/path.php -------------------------------------------------------------------------------- /lib/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/route.php -------------------------------------------------------------------------------- /lib/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/lib/template.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/tests/instructions.txt -------------------------------------------------------------------------------- /tests/test-body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/tests/test-body.php -------------------------------------------------------------------------------- /underscore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/underscore.php -------------------------------------------------------------------------------- /wp-on-routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mk0y/wp-on-routes/HEAD/wp-on-routes.php --------------------------------------------------------------------------------