bschleyer / php-api-sdk
An unofficial PHP SDK for the dashserv REST-API
1.1
2022-10-23 01:39 UTC
Requires
- guzzlehttp/guzzle: >=7.4
This package is auto-updated.
Last update: 2024-10-23 06:13:24 UTC
README
The official PHP SDK for the dashserv API to order, manage and cancel products: https://docs.dashserv.io/
Installation
Install the package using composer:
composer require dashserv/php-api-sdk
Usage
$dsClient = new dashservApiClient("5srzVAPT0Kz0CME0Y5GTOfha4TKDC1rD"); foreach ($dsClient->vServer()->list()->getData() as $vserverItem) { // UUID: dIjw5 - Name: test (2 Kerne, 4 GB RAM, 60 GB SSD) echo "UUID: {$vserverItem->uuid} - Name: {$vserverItem->name} ({$vserverItem->options->cores} Kerne, {$vserverItem->options->ram} GB RAM, {$vserverItem->options->disk} GB SSD)\n"; }
Take a look on more examples for each product and many use cases in the examples directory.
LICENSE:
This software is distributed under the MIT license.