This package is abandoned and no longer maintained. No replacement package was suggested.

Owl is a simply cURL wrapper for PHP

1.0.0 2017-08-11 12:56 UTC

This package is auto-updated.

Last update: 2021-06-18 13:48:57 UTC


README

Owl is a simply cURL wrapper for PHP

Build Status CodeClimate Version

Requirements

  • PHP >= 5.6
  • cURL library enabled

Install

Composer

{
    "require": {
        "pablosanches/owl": "1.0.*"
    }
}
require_once './vendor/autoload.php';

Usage

// Namespace shortcut
use Owl\Method as Http;

// Template
$request = new Http\<METHOD_NAME>( string $url [, array $options ] );

Methods are:

  • Get()
  • Head()
  • Options()
  • Post()
  • Put()
  • Patch()
  • Delete()

Constructor $options

[
    'data' => [             // Data to send, available for `Post`, `Put` and `Patch`
        'foo' => 'bar'
    ],
    'headers' => [          // Additional headers (optional)
        'Authorization: foobar'
    ],
    'ssl' => '/cacert.pem', // Use it for SSL (optional)
    'is_payload' => true,   // `true` for sending a payload (JSON-encoded data, optional)
    'autoclose' => true     // Is the request must be automatically closed (optional)
]

Public methods

// Send a request
$request->send();

// HTTP status code
$request->getStatus();

// HTTP header
$request->getHeader();

// HTTP body response
$request->getResponse();

// Used cURL options
$request->getCurlOptions();

// Set a cURL option
$request->setCurlOption(CURLOPT_SOMETHING, $value);

// Manually close the handle (necessary when `autoclose => false` is used)
$request->close();

Examples

Basic:

// Namespace shortcut
use Owl\Method as Http;

// Standard GET request
$request = new Http\Get('http://domain.com');

// Send this request
$request->send();

echo $request->getResponse(); // body response
echo $request->getStatus(); // HTTP status code

Send a payload:

// Namespace shortcut
use Owl\Method as Http;

// JSON-encoded POST request
$request = new Http\Post($this->endpoint, [
    'data' => [
        'name' => 'foo',
        'email' => 'foo@domain.com'
    ],
    // With 'is_payload' => true
    // You don't have to json_encode() your array of data
    // Moreover, the appropriate headers will be set for you
    'is_payload' => true
]);

// Send this request
$request->send();

echo $request->getResponse(); // body response
echo $request->getStatus(); // HTTP status code

Manual closing:

// Namespace shortcut
use Owl\Method as Http;

// Set `autoclose` option to `false`
$request = new Http\Get('http://domain.com', [
    'autoclose' => false
]);

// Send this request
$request->send();

// Now you can retrieve a cURL info as the handle is still open
$request->getCurlInfo(CURLINFO_SOMETHING);

echo $request->getResponse();

// Manually close the handle
$request->close();

Tests

On project directory:

  • composer install to retrieve phpunit
  • phpunit to run tests