PHP code example of jigarakatidus / laravel-http-to-curl
1. Go to this page and download the library: Download jigarakatidus/laravel-http-to-curl library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jigarakatidus / laravel-http-to-curl example snippets
Http::ddWithCurl()
->get('https://example.com/api/resource');
Http::ddWithCurl()
->get('https://example.com/api/resource', [
'param1' => 'value1',
'param2' => 'value2',
]);
Http::ddWithCurl()
->acceptJson()
->post('https://example.com/api/resource', [
'key1' => 'value1',
'key2' => 'value2',
]);