marissen/ecurring-api-php

This package is abandoned and no longer maintained. The author suggests using the mooore/ecurring-api-php package instead.

eCurring API client library for PHP.

0.5.0 2020-10-23 07:05 UTC

This package is auto-updated.

Last update: 2021-11-01 10:04:04 UTC


README

This is an unofficial library which provides PHP bindings for the eCurring API.

eCurring Home | eCurring API Documentation

This library is inspired by Mollie API client for PHP.

Requirements

In order to use this library, you need:

  • An active eCurring account and API key.
  • PHP >= 7.2

Installation

composer require mooore/ecurring-api-php

Getting started

Initializing the eCurring client

use Mooore\eCurring\eCurringHttpClient;

$client = new eCurringHttpClient();
$client->setApiKey('your_api_key');

Creating a customer

$customer = $client->customers->create([
    'first_name' => 'John',
    'last_name' => 'Doe',
    'email' => 'example@domain.com'
]);

Creating a subscription from customer

$customer = $client->customers->get(200);
$subscription = $customer->createSubscription(1);

Creating a subscription from subscription plan

$subscriptionPlan = $client->subscriptionPlans->get(1);
$subscription = $subscriptionPlan->createSubscription(200);

Get all subscriptions

$customers = $client->customers->page();
do {
    foreach ($customers as $customer) {
        if ($subscription->isActive()) {
            // do something
        }
    }
} while ($customers = $customers->next());

Roadmap