2017 © Pedro Peláez
 

library recurly-client

The PHP client library for the Recurly API

image

recurly/recurly-client

The PHP client library for the Recurly API

  • Wednesday, August 1, 2018
  • by drewish
  • Repository
  • 87 Watchers
  • 133 Stars
  • 502,846 Installations
  • PHP
  • 6 Dependents
  • 0 Suggesters
  • 72 Forks
  • 24 Open issues
  • 68 Versions
  • 8 % Grown

The README.md

Recurly

Contributor Covenant, (*1)

This repository houses the official php client for Recurly's V3 API., (*2)

Note: If you were looking for the V2 client, see the v2 branch., (*3)

Documentation for the HTTP API and example code can be found on our Developer Portal., (*4)

Getting Started

Reference documentation can be found on Github Pages., (*5)

Installing

This package is published on Packagist under the name recurly/recurly-client and can be added as a dependency to your project's composer.json file. We recommend using Composer to install and maintain this dependency., (*6)

{
    "require": {
        "recurly/recurly-client": "^4"
    }
}

Note: We try to follow semantic versioning and will only apply breaking changes to major versions., (*7)

Creating a Client

Client instances provide one place where every operation on the Recurly API can be found (rather than having them spread out amongst classes). A new client can be initialized with its constructor. It only requires an API key which can be obtained on the API Credentials Page., (*8)

// You should store your API key somewhere safe
// and not in plain text if possible
$api_key = 'myApiKey';
$client = new \Recurly\Client($api_key);

To access Recurly API in Europe, you will need to specify the EU Region in the options., (*9)

// You should store your API key somewhere safe
// and not in plain text if possible
$api_key = 'myApiKey';
$client = new \Recurly\Client($api_key, ['region' => 'eu']);

Logging

The client constructor optionally accepts a logger provided by the programmer. The logger you pass should implement the PSR-3 Logger Interface. By default, the client creates an instance of the \Recurly\Logger which is a basic implementation that prints log messages to php://stdout with the \Psr\Log\LogLevel::WARNING level., (*10)

// Create an instance of the Recurly\Logger
$logger = new \Recurly\Logger('Recurly', \Psr\Log\LogLevel::INFO);

$client = new \Recurly\Client($api_key, $logger);

SECURITY WARNING: The log level should never be set to DEBUG in production. This could potentially result in sensitive data in your logging system., (*11)

Operations

The \Recurly\Client contains every operation you can perform on the site as a list of methods. Each method is documented explaining the types and descriptions for each input and return type. For example, to use the get_plan endpoint, call the Client#getPlan() method:, (*12)

$plan_code = "gold";
$plan = $client->getPlan("code-$plan_code");

Pagination

Pagination is accomplished using the \Recurly\Pager object. A pager is created by the list* operations of the client. The Pager implements PHP's Iterator interface, so it can be used in a foreach loop., (*13)

Note Calling list* methods do not call the API right away. They return immediately with the Pager. The API is not called until you iterate over the pager or request items from it., (*14)

$accounts = $client->listAccounts();

foreach($accounts as $account) {
    echo 'Account code: ' . $account->getCode() . PHP_EOL;
}

Sorting and Filtering

When calling the list* methods and constructing Pagers, you can pass in optional query parameters to help you sort or filter the resulting resources in the list. The query params are documented on the method and can be found in the docs under the Query Parameters section of any pageable endpoint., (*15)

Example filtering an sorting accounts:, (*16)

$options = array('params' = array(
    // the following params are common amongst pageable endpoints
    'limit' => 200,   // 200 resources per page (http call)
    'order' => 'asc', // asc or desc order
    'begin_time' => '2020-01-01T01:00:00Z', // don't include accounts before 2020-01-01
    'end_time' => '2020-02-01T01:00:00Z', // don't include accounts after 2020-02-01
    // the following params are specific to the list_account endpoint
    'email' => 'admin@email.com', // only accounts with this email
    'subscriber' => true, // only accounts with a subscription in the active, canceled, or future state
    'past_due' => false // no accounts with an invoice in the past_due state
));
$accounts = $client->listAccounts($options);

foreach($accounts as $account) {
    echo 'Account code: ' . $account->getCode() . PHP_EOL;
}

Counting Resources

The Pager class implements a getCount() method which allows you to count the resources the pager would return if iterated. It does so by calling the endpoint with HEAD and parsing and returning the Recurly-Total-Records header. This method respects any filtering parameters you apply to the pager, but the sorting parameters will have no effect., (*17)

$accounts = $client->listAccounts([ 'past_due' => true ]);
// make the HTTP call to get the total count
$count = $accounts->getCount();
echo "Number of accounts past due: $count"

Efficiently Fetch the First or Last Resource

The Pager class implements a getFirst() method which allows you to fetch just the first or last resource from the server. On top of being a convenient abstraction, this is implemented efficiently by only asking the server for the 1 resource you want., (*18)

$accounts = $client->listAccounts([ 'order' => 'desc', 'past_due' => true ]);
// fetch only the first account with past due invoice
$account = $accounts->getFirst();

If you want to fetch the last account in this scenario, invert the order from desc to asc:, (*19)

$accounts = $client->listAccounts([ 'order' => 'asc', 'past_due' => true ]);
// fetch only the last account with past due invoice
$account = $accounts->getFirst();

A Note on Headers

In accordance with section 4.2 of RFC 2616, HTTP header fields are case-insensitive., (*20)

Creating Resources

For creating or updating resources, pass a plain associative array to one of the create* or update* methods:, (*21)

$plan_create = array(
    "name" => "Monthly Coffee Subscription",
    "code" => "coffee-monthly",
    "currencies" => [
        array(
            "currency" => "USD",
            "unit_amount" => 20.0
        )
    ]
);

$plan = $client->createPlan($plan_create);

echo 'Created Plan:' . PHP_EOL;
var_dump($plan);

Error Handling

try {
    $account = $client->deactivateAccount($account_id);
} catch (\Recurly\Errors\Validation $e) {
    // If the request was not valid, you may want to tell your user
    // why. You can find the invalid params and reasons in err.params
    // TODO show how to get params
    var_dump($e);
} catch (\Recurly\Errors\NotFound $e) {
    // You'll receive a NotFound error if one of the identifiers in your request
    // was incorrect. In this case, it's possible the $account_id is incorrect or
    // the associated account does not exist
    var_dump($e);
} catch (\Recurly\RecurlyError $e) {
    // All errors inherit from this base class, so this should catch
    // any error that this library throws. If we don't know what to
    // do with the err, we should probably re-raise and let
    // our web framework and logger handle it
    var_dump($e);
}

HTTP Metadata

Sometimes you might want to get some additional information about the underlying HTTP request and response. Instead of returning this information directly and forcing the programmer to unwrap it, we inject this metadata into the top level resource that was returned. You can access the response by calling getResponse() on any Resource., (*22)

Warning: Do not log or render whole requests or responses as they may contain PII or sensitive data., (*23)

$account = $client->getAccount("code-douglas");
$response = $account->getResponse();
echo "Request ID:" . $response->getRequestId() . PHP_EOL;
echo "Rate limit remaining:" . $response->getRateLimitRemaining() . PHP_EOL;

Information about the request is also included in the \Recurly\Response class and can be accessed using the getRequest() method on the Response., (*24)

$account = $client->getAccount("code-douglas");
$response = $account->getResponse();
$request = $response->getRequest();
echo "Request path:" . $request->getPath() . PHP_EOL;
echo "Request body as JSON:" . $request->getBodyAsJson() . PHP_EOL;
foreach($request->getHeaders() as $k => $v) {
    echo "Request header: $k => $v" . PHP_EOL;
}

This also works on Empty resources (for when there is no return body):, (*25)

$response = $client->removeLineItem("a959576b2b10b012")->getResponse();
echo "Request ID:" . $response->getRequestId() . PHP_EOL;

The Versions

01/08 2018

dev-master

9999999-dev https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • ext-curl *
  • php >= 5.6.0

 

The Development Requires

pay payments recurly

01/08 2018

dev-aaron-suarez/update-readme

dev-aaron-suarez/update-readme https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.6.0
  • ext-curl *

 

The Development Requires

pay payments recurly

26/06 2018

2.10.3

2.10.3.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

26/06 2018

dev-api_version_2_13

dev-api_version_2_13 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

24/06 2018

dev-subscription_terms

dev-subscription_terms https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

18/06 2018

dev-custom-fields

dev-custom-fields https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

07/06 2018

dev-external_token_support

dev-external_token_support https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

01/06 2018

dev-gateway_code

dev-gateway_code https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

30/05 2018

dev-add_all_transactions_link_on_invoice

dev-add_all_transactions_link_on_invoice https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

16/05 2018

2.10.2

2.10.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

04/04 2018

2.10.1

2.10.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

04/04 2018

dev-bump_2_10_1

dev-bump_2_10_1 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

03/04 2018

dev-api_version_2_11

dev-api_version_2_11 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

20/03 2018

dev-release_2_10

dev-release_2_10 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

20/03 2018

2.10.0

2.10.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

19/03 2018

dev-version_2_10

dev-version_2_10 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

02/03 2018

dev-api_version_2_10

dev-api_version_2_10 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

06/10 2017

2.9.0

2.9.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

06/10 2017

dev-release_2_9

dev-release_2_9 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

06/10 2017

dev-api_version_2_8

dev-api_version_2_8 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

27/09 2017

dev-purchases_custom_invoice_notes

dev-purchases_custom_invoice_notes https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

21/07 2017

2.8.2

2.8.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

21/07 2017

dev-release_2_8

dev-release_2_8 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

14/07 2017

2.8.1

2.8.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

26/06 2017

dev-api_version_2_7

dev-api_version_2_7 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

03/06 2017

2.8.0

2.8.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

03/06 2017

2.8.0.rc1

2.8.0.0-RC1 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.4.0
  • ext-curl *

 

The Development Requires

pay payments recurly

28/03 2017

dev-trial_requires_billing_info_field

dev-trial_requires_billing_info_field https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

28/03 2017

dev-api_version_2_6

dev-api_version_2_6 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

21/03 2017

dev-add_new_fields_to_subscription_and_plan

dev-add_new_fields_to_subscription_and_plan https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

21/03 2017

2.7.2

2.7.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

21/03 2017

dev-release_2_7

dev-release_2_7 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/01 2017

2.7.1

2.7.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

25/10 2016

dev-release_2_8_0

dev-release_2_8_0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

15/09 2016

2.7.0

2.7.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

15/09 2016

dev-release-2.7.x

dev-release-2.7.x https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/08 2016

2.6.0

2.6.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/08 2016

dev-release_2_6

dev-release_2_6 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

05/07 2016

2.5.3

2.5.3.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

05/07 2016

dev-release_2_5

dev-release_2_5 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

07/06 2016

2.5.2

2.5.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

07/04 2016

dev-delete_specific_coupon_redemption_from_account

dev-delete_specific_coupon_redemption_from_account https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

25/03 2016

dev-adeitrick/billing-info-session-id

dev-adeitrick/billing-info-session-id https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

20/02 2016

2.5.1

2.5.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

14/01 2016

2.5.0

2.5.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

15/09 2015

2.4.6

2.4.6.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

15/09 2015

dev-release_2_4

dev-release_2_4 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

03/08 2015

2.4.5

2.4.5.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

02/07 2015

2.4.4

2.4.4.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

04/06 2015

2.4.3

2.4.3.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

14/04 2015

2.4.2

2.4.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

06/02 2015

2.4.1

2.4.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

02/02 2015

2.4.0

2.4.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

05/11 2014

dev-verbose-curl

dev-verbose-curl https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

26/09 2014

2.3.1

2.3.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

26/09 2014

dev-release_2_3

dev-release_2_3 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

19/05 2014

2.3.0

2.3.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/05 2014

2.2.6

2.2.6.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/05 2014

dev-release_2_2

dev-release_2_2 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

24/04 2014

2.2.5

2.2.5.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

08/01 2014

2.2.4

2.2.4.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

11/11 2013

2.2.3

2.2.3.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

08/10 2013

2.2.2

2.2.2.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

19/07 2013

2.2.1

2.2.1.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

10/05 2013

2.2.0

2.2.0.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

20/02 2013

2.1.4

2.1.4.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

20/02 2013

dev-release_2_1

dev-release_2_1 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly

09/02 2013

2.1.3

2.1.3.0 https://github.com/recurly/recurly-client-php

The PHP client library for the Recurly API

  Sources   Download

MIT

The Requires

  • php >= 5.3.0
  • ext-curl *

 

The Development Requires

pay payments recurly