Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace drush references with mysql. Fix comment on lando db-import example code.
  • Loading branch information
pkiff authored Sep 9, 2024
1 parent ff9f0be commit a8cee4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Learn about Lando LAMP tooling commands like composer, php, mysql,

By default, each Lando LAMP recipe will also ship with helpful dev utilities.

This means you can use things like `drush`, `composer` and `php` via Lando and avoid mucking up your actual computer trying to manage `php` versions and tooling.
This means you can use things like `mysql`, `composer` and `php` via Lando and avoid mucking up your actual computer trying to manage `php` versions and tooling.

```bash
lando composer Runs composer commands
Expand All @@ -20,10 +20,10 @@ lando php Runs php commands
**Usage examples**

```bash
# Download a dependency with drush
# Download a dependency with composer
lando composer require phpunit/phpunit --dev

# Run composer tests
# Import a database from a dump file
lando db-import dump.sql.gz

# Drop into a mysql shell
Expand Down

0 comments on commit a8cee4a

Please sign in to comment.