2017 © Pedro Peláez
 

library digitalocean

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

image

graham-campbell/digitalocean

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  • Thursday, March 1, 2018
  • by graham-campbell
  • Repository
  • 21 Watchers
  • 231 Stars
  • 24,388 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 42 Forks
  • 1 Open issues
  • 25 Versions
  • 7 % Grown

The README.md

Laravel DigitalOcean

Laravel DigitalOcean was created by, and is maintained by Graham Campbell, and is a DigitalOcean PHP API Client bridge for Laravel. It utilises my Laravel Manager package. Feel free to check out the change log, releases, security policy, license, code of conduct, and contribution guidelines., (*1)

Banner, (*2)

Build Status StyleCI Status Software License Packagist Downloads Latest Version , (*3)

Installation

This version requires PHP 8.1-8.4 and supports Laravel 10-12., (*4)

DigitalOcean L5.5 L5.6 L5.7 L5.8 L6 L7 L8 L9 L10 L11 L12
5.4 :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x: :x: :x:
6.0 :x: :x: :x: :x: :white_check_mark: :white_check_mark: :x: :x: :x: :x: :x:
7.3 :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x: :x:
8.4 :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x:
9.0 :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :x: :x: :x:
10.4 :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x:
11.0 :x: :x: :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark:

To get the latest version, simply require the project using Composer:, (*5)

$ composer require "graham-campbell/digitalocean:^11.0"

Once installed, if you are not using automatic package discovery, then you need to register the GrahamCampbell\DigitalOcean\DigitalOceanServiceProvider service provider in your config/app.php., (*6)

You can also optionally alias our facade:, (*7)

        'DigitalOcean' => GrahamCampbell\DigitalOcean\Facades\DigitalOcean::class,

Configuration

Laravel DigitalOcean requires connection configuration., (*8)

To get started, you'll need to publish all vendor assets:, (*9)

$ php artisan vendor:publish

This will create a config/digitalocean.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases., (*10)

There are two config options:, (*11)

Default Connection Name

This option ('default') is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is 'main'., (*12)

DigitalOcean Connections

This option ('connections') is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like. Note that the 2 supported authentication methods are: "none" and "token"., (*13)

Usage

DigitalOceanManager

This is the class of most interest. It is bound to the ioc container as 'digitalocean' and can be accessed using the Facades\DigitalOcean facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of my Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repo. Note that the connection class returned will always be an instance of DigitalOceanV2\Client., (*14)

Facades\DigitalOcean

This facade will dynamically pass static method calls to the 'digitalocean' object in the ioc container which by default is the DigitalOceanManager class., (*15)

DigitalOceanServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings., (*16)

Real Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:, (*17)

use GrahamCampbell\DigitalOcean\Facades\DigitalOcean;
// you can alias this in config/app.php if you like

DigitalOcean::droplet()->powerOn(12345);
// we're done here - how easy was that, it just works!

DigitalOcean::size()->getAll();
// this example is simple, and there are far more methods available

The digitalocean manager will behave like it is a DigitalOceanV2\Client class. If you want to call specific connections, you can do with the connection method:, (*18)

use GrahamCampbell\DigitalOcean\Facades\DigitalOcean;

// select the your_connection_name connection, then get going
DigitalOcean::connection('your_connection_name')->droplet()->getById(12345);

With that in mind, note that:, (*19)

use GrahamCampbell\DigitalOcean\Facades\DigitalOcean;

// writing this:
DigitalOcean::connection('main')->region()->getAll();

// is identical to writing this:
DigitalOcean::region()->getAll();

// and is also identical to writing this:
DigitalOcean::connection()->region()->getAll();

// this is because the main connection is configured to be the default
DigitalOcean::getDefaultConnection(); // this will return main

// we can change the default connection
DigitalOcean::setDefaultConnection('alternative'); // the default is now alternative

If you prefer to use dependency injection over facades like me, then you can easily inject the manager like so:, (*20)

use GrahamCampbell\DigitalOcean\DigitalOceanManager;

class Foo
{
    public function __construct(
        private readonly DigitalOceanManager $digitalocean,
    ) {
    }

    public function bar()
    {
        $this->digitalocean->region()->getAll();
    }
}

app(Foo::class)->bar();

For more information on how to use the DigitalOceanV2\Client class we are calling behind the scenes here, check out the docs at https://github.com/DigitalOceanPHP/Client/tree/5.0.0#examples, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage., (*21)

Further Information

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package., (*22)

Security

If you discover a security vulnerability within this package, please send an email to security@tidelift.com. All security vulnerabilities will be promptly addressed. You may view our full security policy here., (*23)

License

Laravel DigitalOcean is licensed under The MIT License (MIT)., (*24)

For Enterprise

Available as part of the Tidelift Subscription, (*25)

The maintainers of graham-campbell/digitalocean and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more., (*26)

The Versions

01/03 2018

dev-master

9999999-dev

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

01/03 2018

v5.0.0

5.0.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

02/01 2018

4.0.x-dev

4.0.9999999.9999999-dev

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

02/01 2018

v4.0.1

4.0.1.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

06/08 2017

v4.0.0

4.0.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

01/01 2017

v3.2.0

3.2.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

01/01 2017

3.2.x-dev

3.2.9999999.9999999-dev

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

26/04 2016

v3.1.0

3.1.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

30/01 2016

v3.0.1

3.0.1.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

21/12 2015

v3.0.0

3.0.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

14/11 2015

v2.2.0

2.2.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

14/11 2015

2.2.x-dev

2.2.9999999.9999999-dev

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

06/10 2015

v2.1.0

2.1.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

26/06 2015

v2.0.0

2.0.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

07/05 2015

v1.1.0

1.1.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

07/05 2015

1.1.x-dev

1.1.9999999.9999999-dev

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

16/04 2015

v1.0.0

1.0.0.0

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

18/02 2015

v0.5.1-alpha

0.5.1.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

05/02 2015

v0.5.0-alpha

0.5.0.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

11/01 2015

v0.4.0-alpha

0.4.0.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1/4.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

25/11 2014

v0.3.0-alpha

0.3.0.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1/4.2

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

30/10 2014

v0.2.0-alpha

0.2.0.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1/4.2

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

19/10 2014

v0.1.2-alpha

0.1.2.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1/4.2

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

12/08 2014

v0.1.1-alpha

0.1.1.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean

27/07 2014

v0.1.0-alpha

0.1.0.0-alpha

DigitalOcean Is A DigitalOcean Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell bridge digitalocean digitalocean-v2 digitaloceanv2 digitalocean bridge laravel digitalocean laravel-digitalocean