Laravel Digitalocean API

Digital Ocean API for Laravel Framework

Digital Ocean API for Laravel Framework

Digital Ocean API for Laravel Framework is a package created by Arayik Smbatyan (@arayiksmbatyan) from Lionix to make it easier to use Digital Ocean API in Laravel Framework.

The package is not using any external libraries like DO PHP SDK, it uses general DO API, therefore it is very easily extendable.

Installation

You can install the package via composer:

Publishing the config file

API KEY

Open your Digitalocean Account and go to the API section. Generate a new Personal Access Token with write access and add to your .env file.

Available Services

All the services can be used by injecting the service into your controller, by using the Digitalocean facade or by using the service facade (e.g. Droplets).

Droplets

Using via Service

Using via Facade

Using via Digitalocean Facade

Available Methods

  • list()

  • store()

  • show()

  • destroy()

Droplet Actions

Usage via Service

Using via Facade

Using via Digitalocean Facade

Available methods

  • initiate()

Droplet Action Types can be found in the official Digitalocean API Doc: https://docs.digitalocean.com/reference/api/api-reference/#operation/dropletActions_post

Domains

Usage via Service

Using via Facade

Using via Digitalocean Facade

Available methods

  • list()

  • store()

  • show()

  • destroy()

Snapshots

Usage via Service

Using via Facade

Using via Digitalocean Facade

Available methods

  • list()

  • make()

  • show()

  • destroy()

Global Service

Available methods

  • Digitalocean::droplets()->...

  • Digitalocean::dropletActions()->...

  • Digitalocean::snapshots()->...

  • Digitalocean::domains()->...

  • Digitalocean::send($method, $uri, array $params = [])

The `send()` method can accept any $uri available from Digitalocean API: https://docs.digitalocean.com/reference/api/api-reference/

DO Snapshot Command

DO Snapshot Command is pre-defined snapshot command which can be used to make a snapshot from any droplet you want, e.g. you can set up a daily snapshot for your droplet in Kernel.php file.

Last updated

Was this helpful?