antonvolkov / php-simple-rest-client
Simple rest-api client for php
0.7
2017-08-20 13:51 UTC
Requires
- php: >=5.5
This package is not auto-updated.
Last update: 2024-10-24 00:54:04 UTC
README
Simple rest-api client for php
Installation
$ php composer.phar require antonvolkov/php-simple-rest-client
Basic usage
$get = SimpleRestClient::get("https://httpbin.org/get", ["asd" => 123, "zxc" => 456]);
$post = SimpleRestClient::post("https://httpbin.org/post", ['asd' => 'test'], ['Content-Type' => 'application/json']);