backerclub/indiegogo

Unofficial Indiegogo Client

v1.2.0 2021-07-14 18:19 UTC

This package is auto-updated.

Last update: 2024-04-15 00:02:58 UTC


README

Latest Version on Packagist StyleCI Total Downloads

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.