inserve/pax8-api-php

A PHP wrapper for the Pax8 API

Installs: 371

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/inserve/pax8-api-php

0.1.5 2025-10-30 13:42 UTC

This package is auto-updated.

Last update: 2025-10-30 13:54:11 UTC


README

PHP Version Require

Status

workflow Latest Stable Version Latest Unstable Version License

About

A PHP Wrapper for Pax8

Installation

composer require inserve/pax8-api-php

Usage example

<?php

use Inserve\Pax8API\Pax8APIClient;

require 'vendor/autoload.php';

$api = new Pax8APIClient();
$accessToken = $api->authenticate('client.id', 'client.secret');

if (! $accessToken) {
    echo 'Authentication failed';

    return;
}

$subscriptions = $api->company->list();