https://github.com/gocardless/codeigniter-gocardless
The CodeIgniter spark for the GoCardless API
https://github.com/gocardless/codeigniter-gocardless
Last synced: about 2 months ago
JSON representation
The CodeIgniter spark for the GoCardless API
- Host: GitHub
- URL: https://github.com/gocardless/codeigniter-gocardless
- Owner: gocardless
- License: mit
- Created: 2012-02-21T15:44:51.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-20T12:23:45.000Z (almost 12 years ago)
- Last Synced: 2025-04-06T10:03:22.749Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 631 KB
- Stars: 8
- Watchers: 115
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

## GoCardless CodeIgniter Client Library
The GoCardless CodeIgniter client provides a simple CodeIgniter interface to the GoCardless
API.### Installation
The files you need to use the GoCardless API are in the /lib folder.
#### Install from source
```console
$ git clone git://github.com/gocardless/codeigniter-gocardless.git application/third_party/gocardless
```#### Download the Zip
[Click here](https://github.com/gocardless/codeigniter-gocardless/zipball/0.4.1)
to download the zip file.#### Installing with Sparks
```console
$ php tools/spark install -v0.4.1 gocardless
```### Usage
Sign up for an account at GoCardless.com. Copy your app id and secret
from the developer tab and paste them into config/gocardless.php. Then use
the following to load the spark:```php
$this->config->load('gocardless');
$this->load->spark('gocardless/0.4.1');
```