PHPackages                             thereference/robo-lando - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. thereference/robo-lando

ActiveRobo-tasks[CLI &amp; Console](/categories/cli)

thereference/robo-lando
=======================

Lando extension for Robo Task Runner

1.0.0(8y ago)4971MITPHPPHP &gt;=5.5.0

Since Oct 12Pushed 8y ago5 watchersCompare

[ Source](https://github.com/thereference/robo-lando)[ Packagist](https://packagist.org/packages/thereference/robo-lando)[ RSS](/packages/thereference-robo-lando/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)Dependencies (2)Versions (1)Used By (0)

Robo Lando Extension
====================

[](#robo-lando-extension)

Extension to execute Lando commands in [Robo](https://github.com/Codegyre/Robo).

[![SensioLabsInsight](https://camo.githubusercontent.com/91430ceb3f7cfc5732bd0a49f81299984cd76a8f00becd7efb3f7475bc3e8aa1/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f61396431386131622d663562302d346536372d383638622d6438626565356162353935622f6d696e692e706e67)](https://insight.sensiolabs.com/projects/a9d18a1b-f5b0-4e67-868b-d8bee5ab595b) [![Build Status](https://camo.githubusercontent.com/a4f455a2482d27f10cd086c616580eafcdc144828258589da26c69bc96ef205b/68747470733a2f2f7472617669732d63692e6f72672f7468657265666572656e63652f726f626f2d6c616e646f2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/thereference/robo-lando) [![Latest Stable Version](https://camo.githubusercontent.com/1d0f4d1f1fc89305e4f4f09d7f642240279880b81b154f4704320f5faf557a68/68747470733a2f2f706f7365722e707567782e6f72672f7468657265666572656e63652f726f626f2d6c616e646f2f762f737461626c65)](https://packagist.org/packages/thereference/robo-lando) [![Total Downloads](https://camo.githubusercontent.com/3a45fcc81adc77b884503dc3aa9ede67c0abe0bfb48e801e28a4d80bdcd1b4c5/68747470733a2f2f706f7365722e707567782e6f72672f7468657265666572656e63652f726f626f2d6c616e646f2f646f776e6c6f616473)](https://packagist.org/packages/thereference/robo-lando) [![Latest Unstable Version](https://camo.githubusercontent.com/073bd87a4cbd8953d2816cf0da874bd8e2dc364639b7afae412ecaaf4429d0ea/68747470733a2f2f706f7365722e707567782e6f72672f7468657265666572656e63652f726f626f2d6c616e646f2f762f756e737461626c65)](https://packagist.org/packages/thereference/robo-lando) [![License](https://camo.githubusercontent.com/424611a2d4d4b10d0f9e9c6772043875209afb172b0fec89869fbfbcebf30e29/68747470733a2f2f706f7365722e707567782e6f72672f7468657265666572656e63652f726f626f2d6c616e646f2f6c6963656e7365)](https://packagist.org/packages/thereference/robo-lando)

Runs Lando commands in stack. You can define global options for all commands (like Lando init).

The option -y assumed by default but can be overridden on calls to `exec()` by passing `false` as the second parameter.

Table of contents
-----------------

[](#table-of-contents)

- [Versions](#versions)
- [Installation](#installation)
- [Testing](#testing)
- [Usage](#usage)
- [Examples](#examples)

Installation
------------

[](#installation)

### Versions

[](#versions)

- `~1.0`: Robo &gt;= 1.0.0-RC1

Add `"thereference/robo-lando": "~1"` to your composer.json:

```
    {
        "require-dev": {
            "thereference/robo-lando": "~1"
        }
    }
```

Execute `composer update`.

Testing
-------

[](#testing)

`composer test`

Usage
-----

[](#usage)

Use the trait (according to your used version) in your RoboFile:

```
class RoboFile extends \Robo\Tasks
{
    // ~1 for Robo >=1.0.0-RC1
    use \TheReference\Robo\Task\Lando\loadTasks;

    //...
}
```

Examples
--------

[](#examples)

### Show Configuration

[](#show-configuration)

```
$this->taskLandoConfig()
    ->run();
```

### Destroy the infrastructure of an application

[](#destroy-the-infrastructure-of-an-application)

```
$this->taskLandoDestroy()
  ->application("myapp")
  ->run();
```

### Get information about a Lando application

[](#get-information-about-a-lando-application)

```
$this->taskLandoInfo()
  ->application("myapp")
  ->deep()
  ->run();
```

### Initialize a new Lando application

[](#initialize-a-new-lando-application)

```
$this->taskLandoInit()
  ->recipe("drupal8")
  ->webroot("./")
  ->run();
```

### List the running Lando applications

[](#list-the-running-lando-applications)

```
$this->taskLandoList()
  ->run();
```

### Print Lando logs of an application

[](#print-lando-logs-of-an-application)

```
$this->taskLandoLogs()
  ->recipe("drupal8")
  ->webroot("./")
  ->run();
```

### Shut down all running Lando containers

[](#shut-down-all-running-lando-containers)

```
$this->taskLandoPoweroff()
  ->run();
```

### Rebuild Lando containers and tools

[](#rebuild-lando-containers-and-tools)

```
$this->taskLandoRebuild()
  ->services(array("database", "appserver")
  ->run();
```

### Stop and restart a Lando application

[](#stop-and-restart-a-lando-application)

```
$this->taskLandoRestart()
  ->application("myapp")
  ->run();
```

### Publicly expose a Lando URL

[](#publicly-expose-a-lando-url)

```
$this->taskLandoShare()
  ->url("http://localhost:32785")
  ->run();
```

### Ssh into a specific service of a Lando application and execute a command

[](#ssh-into-a-specific-service-of-a-lando-application-and-execute-a-command)

```
$this->taskLandoSsh()
  ->user("johndoe")
  ->command("ls -l /")
  ->run();
```

### Start a Lando application

[](#start-a-lando-application)

```
$this->taskLandoStart()
  ->application("myapp")
  ->run();
```

### Stop a Lando application

[](#stop-a-lando-application)

```
$this->taskLandoStop()
  ->application("myapp")
  ->run();
```

### Print the version of Lando

[](#print-the-version-of-lando)

```
$this->taskLandoVersion()
  ->run();
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3136d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d4459df58648350cf2c09198e70c61a4dfe0086b94dd414c39627bb5863ab3c3?d=identicon)[legovaer](/maintainers/legovaer)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/thereference-robo-lando/health.svg)

```
[![Health](https://phpackages.com/badges/thereference-robo-lando/health.svg)](https://phpackages.com/packages/thereference-robo-lando)
```

###  Alternatives

[drush/drush

Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.

2.4k57.4M685](/packages/drush-drush)[pantheon-systems/terminus

A command line interface for Pantheon

3391.5M13](/packages/pantheon-systems-terminus)[chromatic/usher

A collection of Robo commands for use on Chromatic projects.

13534.3k1](/packages/chromatic-usher)[openeuropa/task-runner

PHP task runner based on Robo, focused on extensibility.

37208.7k14](/packages/openeuropa-task-runner)[boedah/robo-drush

Drush CommandStack for Robo Task Runner

22344.5k4](/packages/boedah-robo-drush)[typhonius/acquia_cli

A Robo CLI tool for integrating with Acquia CloudAPI

3132.6k](/packages/typhonius-acquia-cli)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
