Skip to content

chargebee/chargebee-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

157 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chargebee PHP Client Library - API V1

The php library for integrating with Chargebee Recurring Billing and Subscription Management solution.

Chargebee now supports two API versions - V1 and V2. This library is for our older API version V1. The library for V2 can be found in the master branch.

You'd want to upgrade to V2 to benefit from the new functionality. Click here for the API V2 Upgradation Guide.

Installation

ChargeBee is available on Packagist and can be installed using Composer


	composer require chargebee/chargebee-php:'<2'

or Download the php library version 1.x.x from https://github.com/chargebee/chargebee-php/tags. Extract the library into the php include path.

Then, require the library as


 require_once(dirname(__FILE__) . 'path_to ChargeBee.php');

Documentation

Usage

To create a new subscription:


require 'ChargeBee.php';
ChargeBee_Environment::configure("your_site", "{your_site_api_key}");
$result = ChargeBee_Subscription::create(array(
  "id" => "__dev__KyVqH3NW3f42fD", 
  "planId" => "starter", 
  "customer" => array(
    "email" => "john@user.com", 
    "firstName" => "John", 
    "lastName" => "Wayne"
  )
));
$subscription = $result->subscription();
$customer = $result->customer();
$card = $result->card();

License

See the LICENSE file.

About

PHP library for the Chargebee API.

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors