Skip to content

Commit

Permalink
update deps and optimize for midcore part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Dec 9, 2024
1 parent fff327b commit 4830c1b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions examples/drupal10-mysql8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL localhost | grep Server | grep 2.4
cd mysql8
lando mysql -V | grep 8.0

# Should be running sqlite 3.34 by default
# Should be running sqlite 3.40 by default
cd mysql8
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.34
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40

# Should not enable xdebug by default
cd mysql8
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal10-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL appserver_nginx | grep Server | grep nginx
cd nginx
lando mysql -V | grep 5.7

# Should be running sqlite 3.34 by default
# Should be running sqlite 3.40 by default
cd nginx
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.34
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40

# Should not enable xdebug by default
cd nginx
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal10/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL localhost | grep Server | grep 2.4
cd drupal10
lando mysql -V | grep 5.7

# Should be running sqlite 3.34 by default
# Should be running sqlite 3.40 by default
cd drupal10
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.34
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40

# Should not enable xdebug by default
cd drupal10
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal11-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL appserver_nginx | grep Server | grep nginx
cd nginx
lando mysql -V | grep 8.0

# Should be running sqlite 3.34 by default
# Should be running sqlite 3.40 by default
cd nginx
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.34
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40

# Should not enable xdebug by default
cd nginx
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal11/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ lando exec appserver -- curl -IL localhost | grep Server | grep 2.4
cd drupal11
lando mysql -V | grep 8.0

# Should be running sqlite 3.34 by default
# Should be running sqlite 3.40 by default
cd drupal11
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.34
lando php -r "print_r(SQLite3::version());" | grep versionString | grep 3.40

# Should not enable xdebug by default
cd drupal11
Expand Down
4 changes: 2 additions & 2 deletions examples/drupal7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ lando php -m | grep xdebug || echo $? | grep 1
cd drupal7
lando mysql -udrupal7 -pdrupal7 drupal7 -e quit

# Should use drush 8.4.x by default
# Should use drush 8.5.x by default
cd drupal7
lando drush version | grep 8.4
lando drush version | grep 8.5

# Should be able to install drupal
cd drupal7
Expand Down

0 comments on commit 4830c1b

Please sign in to comment.