cyberfusion / oxxa
PHP client for Oxxa API
v2.13.1
2025-03-12 15:46 UTC
Requires
- php: >=8.2
- ext-dom: *
- ext-libxml: *
- ext-simplexml: *
- guzzlehttp/guzzle: ^7.0
- illuminate/http: ^11.0|^12.0
- illuminate/support: ^11.0|^12.0
- symfony/css-selector: ^6.0|^7.0
- symfony/dom-crawler: ^6.0|^7.0
Requires (Dev)
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^11.0|^12.0
- symplify/easy-coding-standard: ^12.0
README
PHP client for the Oxxa API.
Install
Composer
Run the following command to install the package from Packagist:
composer require cyberfusion/oxxa
Usage
Getting started
// Initialize the API $oxxa = new Oxxa($username, $password); // Perform calls to an endpoint $available = $oxxa ->domain() ->check('cyberfusion.nl');
Test mode
To test your implementation, use the test mode. All requests tell the Oxxa API that the request is a test.
Enable:
$oxxa->enableTestMode();
Disable:
$oxxa->disableTestMode();
Mock server
When testing with a mock server, you will be able to modify the base URL of the API with:
$oxxa->setBaseUri('http://localhost:8080');
This will return the Oxxa instance, so you can chain it with other methods.
Exceptions
In case of errors, the client throws exceptions using the OxxaException
as base class. All exceptions have a specific code. These can be found in the OxxaException
class.