nwpointer / crowdtilt
There is no license information available for the latest version (dev-master) of this package.
A mininimal Crowdtilt API v1 Wrapper
dev-master
2014-07-19 23:05 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-05-20 05:38:12 UTC
README
NOTE: This is a rough draft not really intended for public use yet
This is a super simple php wrapper that lets you get started integrating the Crowdtilt crowdfunding api into your project as quickly as posible.
Basic format of api calls: $Crowdtilt->$request-type($api call); please refer to the crowdtilt documentation for more information
example: $Crowdtilt->get('users');
Instalation
add the following to your composer.json file in your projects root directory
{
"require": {
"nwpointer/crowdtilt": "dev-master"
}
}
alternatively you can also git clone it into your projects directory or add it as as submodule
git clone https://github.com/nwpointer/crowdtilt-api.git crowdtilt
or
git submodule add https://github.com/nwpointer/crowdtilt-api.git crowdtilt