digitalclaim / scale-api-php
There is no license information available for the latest version (1.0.2) of this package.
1.0.2
2025-10-21 16:30 UTC
Requires
- php: ^7.4|^8.0
- guzzlehttp/guzzle: ^7.2
- symfony/cache: ^5.2
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);