inserve/pax8-api-php

A PHP wrapper for the Pax8 API

Maintainers

Package info

github.com/inserveit/pax8-api-php

pkg:composer/inserve/pax8-api-php

Statistics

Installs: 472

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.1.6 2026-01-26 12:27 UTC

This package is auto-updated.

Last update: 2026-02-28 12:30:56 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();