c6digital / engaging-networks-php
There is no license information available for the latest version (v0.4.1) of this package.
Package info
github.com/c6digital/engaging-networks-php
pkg:composer/c6digital/engaging-networks-php
v0.4.1
2025-10-16 16:30 UTC
Requires
- illuminate/http: ^10.0 || ^11.0 || ^12.0
README
Installation
composer require c6digital/engaging-networks-php
Usage
Create a new EngagingNetworks client.
use C6Digital\EngagingNetworks\EngagingNetworks; $client = new EngagingNetworks('my-api-key');
Authenticate and retrieve a temporary authorization token.
$client->authenticate();
Make a page request
$client->pageRequest(pageId: 12345, data: [ // ... ]);
Retrieve a Supporter by ID
$client->getSupporterById(supporterId: 12345, parameters: [ // ... ]);