A PHP package for using curl
This is a small library for sending/receiving requests/responses to/from a remote URL using curl in PHP.
website: http://www.snsina.com, (*1)
Curlist can be installed and used in Symfony 2, Zend Framework 2 and any modern framework which supports namespace and composer., (*2)
To install run either if following commands in the root directory of project., (*3)
OR, (*4)
You may refer to this page for having options: http://php.net/manual/en/function.curl-setopt.php, (*5)
``` use Snsina\Curlist\CurlSvc; .... $curl = new CurlSvc();, (*6)
// get $curl->get($url, array $options, $headers);, (*7)
//post $curl->post($url, array $options, $headers);, (*8)
```, (*9)