Simple rest-api client for php
$ php composer.phar require antonvolkov/php-simple-rest-client
$get = SimpleRestClient::get("https://httpbin.org/get", ["asd" => 123, "zxc" => 456]);
$post = SimpleRestClient::post("https://httpbin.org/post", ['asd' => 'test'], ['Content-Type' => 'application/json']);