Ecosyste.ms: Awesome
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: 7 days ago
JSON representation
Expose the DDev executable commands to the Robo task runner.
- Host: GitHub
- URL: https://github.com/droath/robo-ddev
- Owner: droath
- Created: 2019-09-29T19:22:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-11T16:46:01.000Z (over 1 year ago)
- Last Synced: 2024-10-10T20:54:00.065Z (about 1 month ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```