nextgi / logicboxes-api
PHP SDK for the LogicBoxes API platform.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/nextgi/logicboxes-api
Requires
- ext-curl: *
- ext-json: *
- ext-simplexml: *
- guzzlehttp/guzzle: *
This package is auto-updated.
Last update: 2025-09-27 22:49:12 UTC
README
This library is designed to work with providers that operate on the LogicBoxes architecture. Some include:
Available API requests:
- Actions
- Billing
- Contacts
- Customers
- Dns
- Domains
- Orders
- Products
- Customer Pricing
- Reseller Pricing
- Active Reseller Promotions
Installation
composer require nextgi/logicboxes-api
Usage Example
use nextgi\LogicBoxes\ResellerApi; // In our example, we are using ResellerClub. Provider make no difference if they use LogicBoxes. $registrar = new ResellerApi('<userId>', '<apiKey>'); $registrar->domains()->available(['google', 'example'], ['com', 'net']);
Original Contributor
Many thanks to Ahmet Bora. This repository based on his ResellerClub PHP SDK repository.