splashmedia / chargify-php
Chargify payment processor API for PHP 5.3+
Installs: 6 234
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 1
Forks: 4
Open Issues: 2
pkg:composer/splashmedia/chargify-php
Requires
- php: >=5.3.2
- ext-curl: *
This package is not auto-updated.
Last update: 2025-10-25 19:02:57 UTC
README
This library is a simple wrapper for the Chargify payment platform. Documentation for the Chargify API can be found at http://docs.chargify.com/.
Installation
Installation is easiest with Composer. Just add the following to your requirements section:
{
"require": {
"splashmedia/chargify-php": "dev-master"
}
}
Alternatively you can autoload the library yourself as it complies with PSR-0 namespacing.
Usage
The client is relatively straightforward to use. First you must initialize the connection:
<?php $client = new \Splash\Chargify\Client(APIKEY, DOMAIN, SITESHAREDKEY);
Afterwards you may make calls to API endpoints as per the official chargify documentation:
<?php $data = array( 'subscription' => array( 'customer_attributes' => array( //... ), 'payment_profile_attributes' => array( //... ), ), ); /** @var $subscription \Splash\Chargify\Resource\Subscription **/ $subscription = $client->api('subscriptions', $data, 'POST');
The API will automatically hydrate Chargify API responses into the domain objects located in
lib/Splash/Chargify/Resource/. You can optionally pass a 4th parameter into the api() method to disable hydration
if you would prefer to work with the raw response array.
Memcached
Use memcache by calling Client::setMemcached() with an instance of the class Memcached. At this time, individual
products and a complete list of products are cached.