keboola/billing-api-php-client

PHP Client for Keboola Connection Billing API

Installs: 9 108

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 19

Forks: 0

Open Issues: 0

pkg:composer/keboola/billing-api-php-client

5.5.0 2025-09-18 17:37 UTC

README

PHP client for the Billing API (API docs).

Usage

composer require keboola/billing-api-php-client
use Keboola\BillingApi\Client;

$client = new Client(
    'http://billing.keboola.com/',
    'xxx-xxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
);
$credits = $client->getRemainingCredits();
var_dump($credits);

Run tests

  • With the above setup, you can run tests:

    docker compose build
    docker compose run tests
  • To run tests with local code use:

    docker compose run tests-local composer install
    docker compose run tests-local

License

MIT licensed, see LICENSE file.