A simple project using curl in object oriented style
Basic working example :
$rest = new \alphayax\rest\Rest( 'https://api.github.com/users/alphayax/repos');
$rest->addHeader( 'User-Agent', 'alphayax-rest');
$rest->GET();
print_r( $rest->getCurlResponse());
More examples can be found in the exemple directory.
Public functions signatures can be found here.