backerclub / indiegogo
Unofficial Indiegogo Client
v1.2.0
2021-07-14 18:19 UTC
Requires
- php: >=8.0
- ext-json: *
- guzzlehttp/guzzle: >=6.5
Requires (Dev)
- phpunit/phpunit: ^9.1
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2024-11-15 01:06:34 UTC
README
An unofficial PHP Client for Indiegogo's public API https://developer.indiegogo.com/docs/
Usage
You can find examples of each API method used in the examples folder.
Add the unofficial package to your project.
composer require backerclub/indiegogo
Create the Indiegogo client by passing in a well formed Auth object and call the method you desire to get results for.
<?php $auth = new \BackerClub\IndiegogoApiClient\Entity\Auth( 'email@example.com', 'password-goes-here', 'api-token-goes-here' ); $indiegogo = new \BackerClub\IndiegogoApiClient\IndiegogoClient($auth); $campaigns = $indiegogo->campaigns();
Contributing
Please see CONTRIBUTING for details.
Credits
Similar Packages
License
The MIT License (MIT). Please see License File for more information.