antonvolkov / php-simple-rest-client
Simple rest-api client for php
Installs: 86
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/antonvolkov/php-simple-rest-client
Requires
- php: >=5.5
This package is not auto-updated.
Last update: 2025-10-09 05:25:22 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']);