Crowdtilt API
NOTE: This is a rough draft not really intended for public use yet, (*1)
This is a super simple php wrapper that lets you get started integrating the Crowdtilt crowdfunding api into your project as quickly as posible., (*2)
Basic format of api calls: $Crowdtilt->$request-type($api call);
please refer to the crowdtilt documentation for more information, (*3)
example:
$Crowdtilt->get('users');, (*4)
Instalation
add the following to your composer.json file in your projects root directory, (*5)
{
"require": {
"nwpointer/crowdtilt": "dev-master"
}
}
alternatively you can also git clone it into your projects directory or add it as as submodule, (*6)
git clone https://github.com/nwpointer/crowdtilt-api.git crowdtilt
or, (*7)
git submodule add https://github.com/nwpointer/crowdtilt-api.git crowdtilt