An open API service indexing awesome lists of open source software.

https://github.com/droath/robo-ddev

Expose the DDev executable commands to the Robo task runner.
https://github.com/droath/robo-ddev

Last synced: 3 months ago
JSON representation

Expose the DDev executable commands to the Robo task runner.

Awesome Lists containing this project

README

          

Run DDev commands from the Robo task runner. You'll need to have the DDev executable installed. Learn more at [https://www.ddev.com/](https://www.ddev.com/).

### Getting Started

First, you'll need to download the robo ddev library using composer:

```bash
composer require --dev droath/robo-ddev
```

### Example

```php
taskDDevStart()
->all()
->run();

// Command equivalent: `ddev stop --stop-ssh-agent`
$this->taskDDevStop()
->stopSshAgent()
->run();
```