apistax / client
Secure and reliable APIs for your common business needs.
1.0.0
2022-10-10 13:56 UTC
Requires
- php: ^7.3 || ^8.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- donatj/mock-webserver: ^v2.5.0
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2025-03-10 18:53:10 UTC
README
APIstax PHP client is a complete PHP client implementation for the APIstax platform.
Usage
Install the latest version:
composer require 'apistax/client'
Get your APIstax API key here.
Initialise an APIstaxClient
and start using it.
<?php $config = new \APIstax\Configuration(); $config->setApiKey("API_KEY"); $client = new \APIstax\APIstaxClient($config); $payload = new \APIstax\Models\VatVerificationPayload(); $payload->setVatId("VAT_ID"); $result = $this->client->verifyVatId($payload);
The further information and documentation about the APIs can be found on APIstax documentation page.