LaravelPackages.net
Acme Inc.
Toggle sidebar
codeitnowin/curlrequestit

Light weight curl request library by http://www.codeitnow.in, It has setters and getters to make easy to use. You can use Curl Request with any framework like Symfony, Laravel, CackPHP, CodeIgniter, Yii etc. This is alternate of Guzzle and other libraries.

47
7
1.0.0
About codeitnowin/curlrequestit

codeitnowin/curlrequestit is a Laravel package for light weight curl request library by http://www.codeitnow.in, it has setters and getters to make easy to use. you can use curl request with any framework like symfony, laravel, cackphp, codeigniter, yii etc. this is alternate of guzzle and other libraries.. It currently has 7 GitHub stars and 47 downloads on Packagist (latest version 1.0.0). Install it with composer require codeitnowin/curlrequestit. Discover more Laravel packages by codeitnowin or browse all Laravel packages to compare alternatives.

Last updated

CodeItNow Curl RequestIt

Light weight curl request library by http://www.codeitnow.in, It has setters and getters to make easy to use. You can use Curl Request with any framework like Symfony, Laravel, CackPHP, CodeIgniter, Yii etc. This is alternate of Guzzle and other libraries.

Installation -

CodeItNow Curl RequestIt can install by composer.

composer require codeitnowin/curlrequestit

Uses -

You can use Curl RequestIt by adding composer autoload file from vendor folder and then use namespace as given in below example

Example - Request:

require_once 'vendor/autoload.php';

use CodeItNow\Curl\RequestIt;

$request = new RequestIt();

$request->setUrl('http://localhost')
        ->setParams(array("name"=>"CodeItNow", "library"=>"CurlRequestIt"))
        ->send('POST');
print_r($request->getResponse());
Comments