├── .gitignore ├── LICENSE ├── README.markdown ├── RestClientTest.php ├── composer.json └── restclient.php /.gitignore: -------------------------------------------------------------------------------- 1 | .phpunit.result.cache 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcdent/php-restclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcdent/php-restclient/HEAD/README.markdown -------------------------------------------------------------------------------- /RestClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcdent/php-restclient/HEAD/RestClientTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcdent/php-restclient/HEAD/composer.json -------------------------------------------------------------------------------- /restclient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcdent/php-restclient/HEAD/restclient.php --------------------------------------------------------------------------------