backerclub/indiegogo

Unofficial Indiegogo Client

Installs: 1 169

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/backerclub/indiegogo

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

This package is auto-updated.

Last update: 2025-10-15 03:17:36 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.