nwpointer / crowdtilt
A mininimal Crowdtilt API v1 Wrapper
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/nwpointer/crowdtilt
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-12-16 08:11:33 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