xsirblockx/patreonapi

This package is abandoned and no longer maintained. No replacement package was suggested.

Patreons API with curl useable with PHP

dev-master 2020-09-14 17:44 UTC

This package is auto-updated.

Last update: 2024-01-15 01:04:26 UTC


README

Just the patreon api for php over curl

Installing:

composer require xsirblockx/patreonapi

//Usage
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use Patreon\PatreonAPI;

$api = new PatreonAPI("ACCESS TOKEN");

//Get campaign id
echo $api->getCampaignID()

//Get all patreons
var_dump($api->getAllPatreons());

//Get all active patreons
var_dump($api->getAllPatreons());