Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 338 Bytes

File metadata and controls

16 lines (11 loc) · 338 Bytes

api-request

Simple php script which allows to call the api in a more cleanly way


How to use

Download request.php file and place it somewhere amongst your project files and include it in your code :D

Request::get($url, $data);
Request::post($url, $data);
Request::put($url, $data);
Request::delete($url, $data);