Skip to content

happysj/chargebee-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChargeBee PHP Client Library

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

Installation

Download the php library from https://github.com/chargebee/chargebee-php/downloads. 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

ChargeBee API client implementation for PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%