digitalclaim/scale-api-php

There is no license information available for the latest version (1.0.2) of this package.

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/digitalclaim/scale-api-php

1.0.2 2025-10-21 16:30 UTC

This package is auto-updated.

Last update: 2025-10-21 16:58:00 UTC


README

PHP library for ARGUS.scale

Example

<?php

require_once __DIR__ . '/vendor/autoload.php';

use DigitalClaim\Scale\Auth;
use DigitalClaim\Scale\Collection;

$auth = new Auth(
    'CLIENT_URL',
    'CLIENT_ID',
    'CLIENT_SECRET',
    'test'
);

$repository = new Collection('SOME_DOCUMENT_COLLECTION', $auth);

$data = $repository->paginate(1, [
    'data' => [],
], 10);

print_r($data);