Get support for dunglas/DunglasDigitalOceanBundle
If you're new to LTH, please see our FAQ for more information on what it is we do.
Support Options
Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:
View Open IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck out the page and see if there are any options to sponsor this project or it's developers directly.
dunglas/DunglasDigitalOceanBundle
DigitalOcean Bundle for Symfony and API Platform
DunglasDigitalOceanBundle allows using the DigitalOcean API from your Symfony and API Platform projects. It registers the DigitalOcean PHP API Client as a Symfony service.
If you aren't yet a DigitalOcean user, use this affiliate link to get $100 in free credit!
If you want to deploy your Symfony apps to DigitalOcean, checkout this tutorial.
Example
// src/Controller/DigitalOceanController.php
namespace App\Controller;
use DigitalOceanV2\Client;
use DigitalOceanV2\ResultPager;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class ProductController
{
#[Route("/droplets")]
public function listDroplets(Client $doClient): Response
{
// get the first 100 droplets as an array
$droplets = $doClient->droplet()->getAll();
// or create a new result pager
$pager = new ResultPager($doClient);
// and get all droplets as an array
$droplets = $pager->fetchAll($doClient->droplet(), 'getAll');
// ...
}
}
Of course, you can also inject the client service into your commands, messenger handlers and any other service.
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require dunglas/digital-ocean-bundle symfony/http-client nyholm/psr7 guzzlehttp/promises
The previous command installs the bundle, Symfony HttpClient and the dependencies it needs
to "provide" psr/http-client-implementation
and psr/http-factory-implementation
.
Alternatively, you can use any other implementation of these interfaces such as Guzzle.
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require dunglas/digital-ocean-bundle symfony/http-client nyholm/psr7 guzzlehttp/promises
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
\Dunglas\DigitalOceanBundle\DunglasDigitalOceanBundle::class => ['all' => true],
];
Configuration
dunglas_digital_ocean:
connections:
primary: # can be any name
token: <your-access-token>
secondary:
token: <your-access-token>
default_connection: primary # If not set, the first in the list will be used
This configuration automatically registers the following autowiring aliases:
DigitalOceanV2\Client $primaryClient
DigitalOceanV2\Client $secondaryClient
If you have only one client, you can use this shortcut:
dunglas_digital_ocean: <your-access-token>
Use the DigitalOceanV2\Client
type to inject the default DigitalOcean client.
Credits
This bundle is brought to you by Kévin Dunglas. It is sponsored by Les-Tilleuls.coop.
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2