Skip to content

Commit

Permalink
lamp
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Sep 6, 2024
1 parent 9a42c19 commit 33bab7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/lamp-init/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ lando mysql -ulamp -plamp lamp -e quit
# Should be able to global require a composer dep
cd lamp
lando composer global require phpunit/phpunit
lando exec appserver -- phpunit --version"
lando exec appserver -- which phpunit | grep /var/www/"
lando exec appserver -- phpunit --version
lando exec appserver -- which phpunit | grep /var/www/

# Should be able to require a composer dep
cd lamp
lando composer require phpunit/phpunit
lando exec appserver -- phpunit --version"
lando exec appserver -- which phpunit | grep /app"
lando exec appserver -- phpunit --version
lando exec appserver -- which phpunit | grep /app

# Should be able to configure via the config key
# This tests the 'How do I configure a Lando Recipe' guide.
Expand All @@ -73,7 +73,7 @@ cp .lando.yml orig.lando.yml
cp ../config.lando.yml .lando.yml
lando rebuild -y
lando php -v |grep "5.6"
lando exec database -- mysql --version" |grep "10.3"
lando exec database -- mysql --version | grep "10.3"
lando poweroff
mv orig.lando.yml .lando.yml
```
Expand Down

0 comments on commit 33bab7b

Please sign in to comment.