antonvolkov/php-simple-rest-client

Simple rest-api client for php

0.7 2017-08-20 13:51 UTC

This package is not auto-updated.

Last update: 2024-04-10 22:24:19 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']);