Download the PHP package citizennet/chargify-php-client without Composer

On this page you can find all versions of the php package citizennet/chargify-php-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package chargify-php-client

Chargify PHP Client library Jason Forrest, 2010 ([email protected])

This is a PHP client for the Chargify API. It allows JSON, XML or internal classes to be used. All calls will raise an exception on error, so make sure to wrap calls in a try...catch block. Also, be sure to check out the Wiki for more tips: http://wiki.github.com/jforrest/Chargify-PHP-Client/

Abraham Williams has created a great Getting Started guide for this library, I recommend you check it out for example usage: http://github.com/abraham/chargify

Example XML usage:

//assumes $subscription_xml contains xml data. This can be from your app, or //populated from any Chargify Data object (inherits ChargifyBase) by calling the getXML() method. // ex. $subscription_xml = $chargify_subscription->getXML(); $request_format = 'XML'; $api_key = 'YOUR_API_KEY';

$connector = new ChargifyConnector($api_key);

try { $new_subscription_xml = $connector->requestCreateSubscription($subscription_xml,$request_format); } catch (ChargifyValidationException $cve) { //process error handling code here. echo $cve->getMessage(); }

NOTE: all functions in ChargifyConnector whose names begin with 'retrieve' or 'request' return either pure XML or pure JSON, depending on the format of the request.

Example JSON usage:

//assumes $subscription_json contains json data. This can be from your app, or //populated from any Chargify Data object (inherits ChargifyBase) by calling the getJSON() method. // ex. $subscription_json = $chargify_subscription->getJSON(); $request_format = 'JSON'; $api_key = 'YOUR_API_KEY';

$connector = new ChargifyConnector($api_key);

try { $new_subscription_json = $connector->requestCreateSubscription($subscription_json,$request_format); } catch (ChargifyValidationException $cve) { //process error handling code here. echo $cve->getMessage(); }

Example internal class usage:

// setup connector $api_key = 'YOUR_API_KEY'; $connector = new ChargifyConnector($api_key);

//Customer creation $xml_import = null; //this is useful for populating from API response. $chargify_customer = new ChargifyCustomer($connector, $xml_import); $chargify_customer->email = "[email protected]"; $chargify_customer->first_name = "Charles"; $chargify_customer->last_name = "Jones"; $chargify_customer->reference = "123b1j23kjb";

try { $new_customer = $chargify_customer->create(); } catch (ChargifyValidationException $cve) { //process error handling code here. echo $cve->getMessage(); }

//Subscription creation //create customer and credit card first $chargify_customer = new ChargifyCustomer($connector); //defaults to same as above $chargify_customer->email = "[email protected]"; $chargify_customer->first_name = "Charles"; $chargify_customer->last_name = "Jones"; $chargify_customer->reference = "123b1j23kjb";

$chargify_card = new ChargifyCreditCard(); $chargify_card->first_name = "Charles"; $chargify_card->last_name = "Jones"; $chargify_card->full_number = '4111111111111111'; $chargify_card->cvv = '123'; $chargify_card->expiration_month = "02"; $chargify_card->expiration_year = "2011"; $chargify_card->billing_address = "123 any st"; $chargify_card->billing_city = "Anytown"; $chargify_card->billing_state = "CA"; $chargify_card->billing_zip = "55555"; $chargify_card->billing_country = 'US';

$chargify_subscription = new ChargifySubscription($connector); //$chargify_subscription->customer_attributes is required //(don't confuse with $chargify_subscription->customer.) $chargify_subscription->customer_attributes = $chargify_customer; $chargify_subscription->credit_card_attributes = $chargify_card; //required (See above) $chargify_subscription->product_handle = "your product handle"; //required or product_id. $chargify_subscription->coupon_code = "coupon_code"; //optional

try { $new_subscription = $chargify_subscription->create(); } catch (ChargifyValidationException $cve) { //process error handling code here. echo $cve->getMessage(); }


All versions of chargify-php-client with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package citizennet/chargify-php-client contains the following files

Loading the files please wait ....