Skip to content

Commit

Permalink
Autoupdated submodule pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfm-47 committed Apr 22, 2024
1 parent 2263a9a commit 2a01b8b
Show file tree
Hide file tree
Showing 44 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion cli
Submodule cli updated 347 files
2 changes: 1 addition & 1 deletion core
Submodule core updated 121 files
2 changes: 1 addition & 1 deletion core-next
Submodule core-next updated 243 files
2 changes: 1 addition & 1 deletion docs
Submodule docs updated 161 files
2 changes: 1 addition & 1 deletion events
2 changes: 1 addition & 1 deletion plugins/acquia
Submodule acquia updated 108 files
2 changes: 1 addition & 1 deletion plugins/backdrop
Submodule backdrop updated 111 files
2 changes: 1 addition & 1 deletion plugins/drupal
Submodule drupal updated 138 files
2 changes: 1 addition & 1 deletion plugins/joomla
Submodule joomla updated 98 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+40 −53 .github/workflows/pr-joomla-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+46 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+15 −0 builders/joomla-mariadb.js
+15 −0 builders/joomla-mssql.js
+15 −0 builders/joomla-mysql.js
+18 −0 builders/joomla-nginx.js
+32 −0 builders/joomla-php.js
+15 −0 builders/joomla-postgres.js
+230 −0 builders/joomla.js
+2 −0 config/default.conf.tpl
+111 −0 config/mysql.cnf
+106 −0 config/mysql8.cnf
+50 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+11 −11 docs/config.md
+29 −44 docs/development.md
+4 −39 docs/getting-started.md
+2 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!77839!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/joomlaicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.local.yml
+18 −0 examples/joomla-custom/.lando.yml
+61 −0 examples/joomla-custom/README.md
+1 −0 examples/joomla-custom/bob/index.php
+1 −0 examples/joomla-custom/bob/info.php
+41 −0 examples/joomla-custom/config/default.conf
+2 −2 examples/joomla-custom/config/mysql.cnf
+1 −1 examples/joomla-custom/config/php.ini
+6 −0 examples/joomla-defaults/.lando.yml
+62 −0 examples/joomla-defaults/README.md
+1 −0 examples/joomla-defaults/index.php
+1 −0 examples/joomla-defaults/info.php
+11 −0 examples/joomla-downstreamer-1/.lando.yml
+44 −0 examples/joomla-downstreamer-1/README.md
+1 −0 examples/joomla-downstreamer-1/index.php
+1 −0 examples/joomla-downstreamer-1/info.php
+11 −0 examples/joomla-downstreamer-2/.lando.yml
+44 −0 examples/joomla-downstreamer-2/README.md
+1 −0 examples/joomla-downstreamer-2/index.php
+1 −0 examples/joomla-downstreamer-2/info.php
+4 −0 examples/joomla-export/.gitignore
+6 −0 examples/joomla-export/.lando.yml
+61 −0 examples/joomla-export/README.md
+1 −0 examples/joomla-export/index.php
+1 −0 examples/joomla-export/info.php
+59 −0 examples/joomla-export/mysql-test.sql
+12 −0 examples/joomla-import/.lando.yml
+56 −0 examples/joomla-import/README.md
+24 −0 examples/joomla-import/big-bad-dump.sql
+1 −0 examples/joomla-import/index.php
+1 −0 examples/joomla-import/info.php
+59 −0 examples/joomla-import/mysql-test.sql
+59 −0 examples/joomla-import/subdir/test.sql
+4 −0 examples/joomla-import/test.sh
+0 −0 examples/joomla-init/.gitignore
+69 −0 examples/joomla-init/README.md
+1 −0 examples/joomla-mysql8/.gitignore
+15 −15 examples/joomla-mysql8/README.md
+10 −0 examples/joomla-mysql8/symfony-mysql8/.lando.yml
+54 −0 examples/joomla-mysql8/symfony-mysql8/README.md
+1 −0 examples/joomla-mysql8/symfony-mysql8/web/index.php
+1 −0 examples/joomla-mysql8/symfony-mysql8/web/info.php
+15 −0 examples/joomla-nginx/.lando.yml
+46 −0 examples/joomla-nginx/README.md
+1 −0 examples/joomla-nginx/web/index.php
+1 −0 examples/joomla-nginx/web/info.php
+0 −0 inits/joomla.js
+20 −5 netlify.toml
+7,636 −0 package-lock.json
+17 −14 package.json
+0 −35 recipes/joomla/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/lagoon
Submodule lagoon updated 87 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+68 −0 .github/workflows/pr-all-services.yml
+11 −9 .github/workflows/pr-docs-tests.yml
+0 −67 .github/workflows/pr-drupal-example-simple-tests.yml
+60 −0 .github/workflows/pr-drupal9-base.yml
+7 −7 .github/workflows/pr-linter.yml
+67 −0 .github/workflows/pr-proxy-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+38 −0 CHANGELOG.md
+6 −1 README.md
+0 −0 builders/_lagoon.js
+37 −0 builders/lagoon-basic.js
+0 −0 builders/lagoon-elasticsearch.js
+15 −0 builders/lagoon-mailhog.js
+1 −1 builders/lagoon-mariadb.js
+0 −0 builders/lagoon-nginx.js
+31 −0 builders/lagoon-node.js
+0 −0 builders/lagoon-none.js
+0 −0 builders/lagoon-php-cli.js
+0 −0 builders/lagoon-php.js
+1 −1 builders/lagoon-postgres.js
+31 −0 builders/lagoon-python.js
+0 −0 builders/lagoon-redis.js
+31 −0 builders/lagoon-ruby.js
+2 −2 builders/lagoon-solr.js
+0 −0 builders/lagoon-varnish.js
+6 −6 builders/lagoon.js
+9 −0 docs/.eslintrc.json
+59 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −53 docs/.vuepress/config.js
+29 −17 docs/config.md
+30 −45 docs/development.md
+0 −32 docs/external-access.md
+2 −37 docs/getting-started.md
+45 −0 docs/install.md
+0 −0 docs/public/.!77952!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/lagoon-icon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 docs/tooling.md
+0 −0 examples/all-services/.gitignore
+1 −0 examples/all-services/.lagoon.yml
+22 −0 examples/all-services/.lando.yml
+19 −0 examples/all-services/Dockerfile
+79 −0 examples/all-services/README.md
+82 −0 examples/all-services/docker-compose.yml
+13 −0 examples/all-services/index.js
+13 −0 examples/all-services/package.json
+475 −0 examples/all-services/yarn.lock
+0 −0 examples/drupal9-base/.gitignore
+2 −0 examples/drupal9-base/.lando.local.yml
+8 −8 examples/drupal9-base/README.md
+0 −0 examples/proxy-tests/.gitignore
+1 −0 examples/proxy-tests/.lagoon.yml
+20 −0 examples/proxy-tests/.lando.yml
+19 −0 examples/proxy-tests/Dockerfile
+77 −0 examples/proxy-tests/README.md
+57 −0 examples/proxy-tests/docker-compose.yml
+13 −0 examples/proxy-tests/index.js
+13 −0 examples/proxy-tests/package.json
+475 −0 examples/proxy-tests/yarn.lock
+1 −1 index.js
+3 −2 inits/lagoon.js
+161 −14 lib/proxy.js
+9 −5 lib/services.js
+17 −3 lib/tooling.js
+25 −6 netlify.toml
+7,445 −0 package-lock.json
+13 −15 package.json
+91 −0 scripts/lagoon-sql-export.sh
+161 −0 scripts/lagoon-sql-import.sh
+19 −0 scripts/lagoon-wait-for-user.sh
+0 −4,613 yarn.lock
2 changes: 1 addition & 1 deletion plugins/lamp
Submodule lamp updated 101 files
2 changes: 1 addition & 1 deletion plugins/laravel
Submodule laravel updated 101 files
2 changes: 1 addition & 1 deletion plugins/lemp
Submodule lemp updated 99 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+41 −46 .github/workflows/pr-lemp-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+38 −0 CHANGELOG.md
+6 −0 README.md
+0 −14 actions-lando-config.yml
+15 −0 builders/lemp-mariadb.js
+15 −0 builders/lemp-mongo.js
+15 −0 builders/lemp-mssql.js
+15 −0 builders/lemp-mysql.js
+15 −0 builders/lemp-nginx.js
+32 −0 builders/lemp-php.js
+15 −0 builders/lemp-postgres.js
+225 −0 builders/lemp.js
+68 −0 config/default.conf.tpl
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+49 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+10 −10 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/getting-started.md
+3 −3 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78458!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/lampicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+23 −0 examples/lemp-custom/.lando.yml
+71 −0 examples/lemp-custom/README.md
+1 −0 examples/lemp-custom/bob/index.php
+1 −0 examples/lemp-custom/bob/info.php
+41 −0 examples/lemp-custom/config/default.conf
+110 −0 examples/lemp-custom/config/mysql.cnf
+49 −0 examples/lemp-custom/config/php.ini
+6 −0 examples/lemp-defaults/.lando.yml
+71 −0 examples/lemp-defaults/README.md
+1 −0 examples/lemp-defaults/index.php
+1 −0 examples/lemp-defaults/info.php
+11 −0 examples/lemp-downstreamer-1/.lando.yml
+44 −0 examples/lemp-downstreamer-1/README.md
+1 −0 examples/lemp-downstreamer-1/index.php
+1 −0 examples/lemp-downstreamer-1/info.php
+11 −0 examples/lemp-downstreamer-2/.lando.yml
+44 −0 examples/lemp-downstreamer-2/README.md
+1 −0 examples/lemp-downstreamer-2/index.php
+1 −0 examples/lemp-downstreamer-2/info.php
+4 −0 examples/lemp-export/.gitignore
+6 −0 examples/lemp-export/.lando.yml
+61 −0 examples/lemp-export/README.md
+1 −0 examples/lemp-export/index.php
+1 −0 examples/lemp-export/info.php
+59 −0 examples/lemp-export/mysql-test.sql
+12 −0 examples/lemp-import/.lando.yml
+56 −0 examples/lemp-import/README.md
+24 −0 examples/lemp-import/big-bad-dump.sql
+1 −0 examples/lemp-import/index.php
+1 −0 examples/lemp-import/info.php
+59 −0 examples/lemp-import/mysql-test.sql
+59 −0 examples/lemp-import/subdir/test.sql
+4 −0 examples/lemp-import/test.sh
+0 −0 examples/lemp-init/.gitignore
+22 −16 examples/lemp-init/README.md
+6 −0 examples/lemp-init/config.lando.yml
+1 −0 examples/lemp-mysql8/.gitignore
+69 −0 examples/lemp-mysql8/README.md
+15 −0 examples/lemp-nginx/.lando.yml
+50 −0 examples/lemp-nginx/README.md
+1 −0 examples/lemp-nginx/web/index.php
+1 −0 examples/lemp-nginx/web/info.php
+0 −11 examples/lemp/.lando.local.yml
+0 −15 examples/lemp/config.lando.yml
+0 −45 examples/lemp/config/default.conf.tpl
+1 −1 inits/lemp.js
+20 −5 netlify.toml
+7,688 −0 package-lock.json
+18 −14 package.json
+0 −25 recipes/lemp/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mailhog
Submodule mailhog updated 48 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+31 −43 .github/workflows/pr-mailhog-tests.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+2 −2 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+15 −3 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+4 −3 builders/mailhog.js
+0 −0 config/mailhog.ini
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+2 −2 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78608!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/mailhogicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/mailhog/.lando.yml
+5 −0 examples/mailhog/README.md
+0 −0 examples/mailhog/index.php
+0 −0 examples/mailhog/mail.php
+88 −0 examples/mailhog/package-lock.json
+14 −0 examples/mailhog/package.json
+20 −5 netlify.toml
+7,357 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+1 −1 utils/add-build-step.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mariadb
Submodule mariadb updated 68 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+40 −45 .github/workflows/pr-mariadb-tests.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+31 −3 CHANGELOG.md
+6 −0 README.md
+0 −14 actions-lando-config.yml
+17 −4 builders/mariadb.js
+0 −0 config/launch.sh
+0 −0 config/my_custom.cnf
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+3 −3 docs/config.md
+30 −45 docs/development.md
+17 −43 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78757!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/mariadbicon.png
+4 −14 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/10.1/.lando.yml
+14 −0 examples/10.10/.lando.yml
+44 −0 examples/10.10/README.md
+14 −0 examples/10.11/.lando.yml
+44 −0 examples/10.11/README.md
+1 −1 examples/10.2/.lando.yml
+1 −1 examples/10.3/.lando.yml
+1 −1 examples/10.4/.lando.yml
+1 −1 examples/10.5/.lando.yml
+5 −2 examples/10.6/.lando.yml
+14 −0 examples/10.7/.lando.yml
+44 −0 examples/10.7/README.md
+14 −0 examples/10.8/.lando.yml
+44 −0 examples/10.8/README.md
+14 −0 examples/10.9/.lando.yml
+44 −0 examples/10.9/README.md
+14 −0 examples/11.0/.lando.yml
+44 −0 examples/11.0/README.md
+14 −0 examples/11.1/.lando.yml
+44 −0 examples/11.1/README.md
+14 −0 examples/11.2/.lando.yml
+44 −0 examples/11.2/README.md
+14 −0 examples/11.3/.lando.yml
+44 −0 examples/11.3/README.md
+9 −2 examples/custom/.lando.yml
+20 −5 netlify.toml
+7,385 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+22 −0 utils/get-default-healthcheck.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mean
Submodule mean updated 66 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+35 −45 .github/workflows/pr-mean-tests.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+25 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+15 −0 builders/mean-mariadb.js
+15 −0 builders/mean-mongo.js
+15 −0 builders/mean-mysql.js
+32 −0 builders/mean-node.js
+15 −0 builders/mean-postgres.js
+111 −0 builders/mean.js
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+12 −12 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/getting-started.md
+2 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78891!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/meanicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.local.yml
+2 −0 examples/.lando.upstream.yml
+0 −0 examples/mean-custom/.gitignore
+12 −0 examples/mean-custom/.lando.yml
+5 −15 examples/mean-custom/README.md
+110 −0 examples/mean-custom/config/mysql.cnf
+3 −0 examples/mean-custom/package-lock.json
+0 −0 examples/mean-defaults/.gitignore
+15 −6 examples/mean-defaults/README.md
+15 −0 examples/mean-downstreamer-1/.lando.yml
+44 −0 examples/mean-downstreamer-1/README.md
+1 −0 examples/mean-downstreamer-1/index.php
+1 −0 examples/mean-downstreamer-1/info.php
+16 −0 examples/mean-downstreamer-2/.lando.yml
+44 −0 examples/mean-downstreamer-2/README.md
+1 −0 examples/mean-downstreamer-2/index.php
+1 −0 examples/mean-downstreamer-2/info.php
+0 −0 inits/mean.js
+20 −5 netlify.toml
+7,595 −0 package-lock.json
+16 −14 package.json
+0 −69 recipes/mean/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mysql
Submodule mysql updated 48 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+31 −45 .github/workflows/pr-mysql-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+1 −1 .tool-versions
+27 −1 CHANGELOG.md
+6 −0 README.md
+0 −14 actions-lando-config.yml
+10 −10 builders/mysql.js
+0 −0 config/launch.sh
+0 −0 config/my_custom.cnf
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+13 −9 docs/config.md
+30 −45 docs/development.md
+2 −37 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!79680!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/mysqlicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/5.7/.lando.yml
+0 −1 examples/5.7/README.md
+1 −1 examples/8.0/.lando.yml
+7 −1 examples/custom/.lando.yml
+20 −5 netlify.toml
+7,483 −0 package-lock.json
+12 −14 package.json
+0 −0 tmpfile
+22 −0 utils/get-default-healthcheck.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/nginx
Submodule nginx updated 78 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+8 −8 .github/workflows/pr-docs-tests.yml
+6 −6 .github/workflows/pr-linter.yml
+37 −44 .github/workflows/pr-nginx-tests.yml
+6 −6 .github/workflows/pr-unit-tests.yml
+16 −7 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+39 −1 CHANGELOG.md
+6 −0 README.md
+0 −14 actions-lando-config.yml
+24 −16 builders/nginx.js
+0 −0 config/default-ssl.conf.tpl
+0 −0 config/default.conf.tpl
+0 −0 config/fastcgi_params
+4 −6 config/launch.sh
+0 −0 config/nginx.conf
+0 −0 config/nginx.conf.tpl
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+4 −4 docs/config.md
+30 −45 docs/development.md
+10 −44 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!74317!favicon.ico
+0 −0 docs/public/.!75826!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/nginxicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/1.16/.lando.yml
+2 −2 examples/1.17/.lando.yml
+1 −1 examples/1.17/README.md
+1 −1 examples/1.18/.lando.yml
+9 −0 examples/1.19/.lando.yml
+44 −0 examples/1.19/README.md
+1 −0 examples/1.19/index.html
+11 −0 examples/1.20/.lando.yml
+44 −0 examples/1.20/README.md
+1 −0 examples/1.20/index.html
+11 −0 examples/1.21/.lando.yml
+44 −0 examples/1.21/README.md
+1 −0 examples/1.21/index.html
+11 −0 examples/1.22/.lando.yml
+44 −0 examples/1.22/README.md
+1 −0 examples/1.22/index.html
+11 −0 examples/1.23/.lando.yml
+44 −0 examples/1.23/README.md
+1 −0 examples/1.23/index.html
+11 −0 examples/1.24/.lando.yml
+44 −0 examples/1.24/README.md
+1 −0 examples/1.24/index.html
+11 −0 examples/1.25/.lando.yml
+44 −0 examples/1.25/README.md
+1 −0 examples/1.25/index.html
+7 −5 examples/custom/.lando.yml
+11 −11 examples/custom/README.md
+1 −1 examples/custom/config/custom.conf
+3 −1 examples/custom/config/server2.conf
+20 −5 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+47 −0 scripts/install-render-template.sh
+0 −0 tmpfile
+14 −0 utils/add-build-step.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/node
Submodule node updated 78 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+35 −44 .github/workflows/pr-node-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+33 −0 CHANGELOG.md
+7 −1 README.md
+0 −12 actions-lando-config.yml
+109 −4 builders/node.js
+9 −0 docs/.eslintrc.json
+57 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −59 docs/.vuepress/config.js
+1 −1 docs/caveats.md
+11 −11 docs/config.md
+29 −44 docs/development.md
+26 −0 docs/guides.md
+5 −3 docs/guides/frontend-tooling.md
+2 −0 docs/guides/using-browsersync.md
+3 −1 docs/guides/using-compass.md
+17 −52 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!80031!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+0 −0 docs/public/images/nodejsicon.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/10/package.json
+175 −164 examples/10/yarn.lock
+2 −2 examples/12/.lando.yml
+1 −1 examples/12/package.json
+172 −161 examples/12/yarn.lock
+1 −1 examples/14/package.json
+104 −113 examples/14/yarn.lock
+1 −1 examples/16/package.json
+104 −113 examples/16/yarn.lock
+3 −0 examples/18/.gitignore
+45 −0 examples/18/.lando.yml
+91 −0 examples/18/README.md
+27 −0 examples/18/package.json
+28 −0 examples/18/src/app-custom.js
+21 −0 examples/18/src/app-http.js
+28 −0 examples/18/src/app-https.js
+1,016 −0 examples/18/yarn.lock
+3 −0 examples/19/.gitignore
+43 −0 examples/19/.lando.yml
+91 −0 examples/19/README.md
+27 −0 examples/19/package.json
+28 −0 examples/19/src/app-custom.js
+21 −0 examples/19/src/app-http.js
+28 −0 examples/19/src/app-https.js
+3 −0 examples/20/.gitignore
+43 −0 examples/20/.lando.yml
+91 −0 examples/20/README.md
+27 −0 examples/20/package.json
+28 −0 examples/20/src/app-custom.js
+21 −0 examples/20/src/app-http.js
+28 −0 examples/20/src/app-https.js
+1,070 −0 examples/20/yarn.lock
+21 −6 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+1 −10 utils/add-build-step.js
+13 −0 utils/get-install-commands.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/pantheon
Submodule pantheon updated 129 files
2 changes: 1 addition & 1 deletion plugins/php
Submodule php updated 124 files
2 changes: 1 addition & 1 deletion plugins/phpmyadmin
Submodule phpmyadmin updated 48 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+28 −41 .github/workflows/pr-phpmyadmin-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+18 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+0 −0 builders/phpmyadmin.js
+9 −0 docs/.eslintrc.json
+57 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −50 docs/.vuepress/config.js
+3 −3 docs/config.md
+30 −45 docs/development.md
+26 −0 docs/guides.md
+4 −2 docs/guides/phpmyadmin-themes.md
+3 −38 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/phpmyadminicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/4.x/.lando.yml
+5 −0 examples/4.x/README.md
+35 −0 examples/4.x/package-lock.json
+14 −0 examples/4.x/package.json
+2 −1 examples/5.x/.lando.yml
+5 −0 examples/5.x/README.md
+35 −0 examples/5.x/package-lock.json
+14 −0 examples/5.x/package.json
+20 −5 netlify.toml
+7,393 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/platformsh
Submodule platformsh updated 53 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+28 −44 .github/workflows/pr-basic-tests.yml
+29 −44 .github/workflows/pr-chrome-headless-tests.yml
+29 −42 .github/workflows/pr-drupal8-sync-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+29 −44 .github/workflows/pr-mariadb-tests.yml
+29 −44 .github/workflows/pr-memcached-tests.yml
+29 −44 .github/workflows/pr-mongodb-tests.yml
+29 −44 .github/workflows/pr-mysql-tests.yml
+29 −44 .github/workflows/pr-php-tests.yml
+29 −44 .github/workflows/pr-postgresql-tests.yml
+29 −44 .github/workflows/pr-redis-tests.yml
+29 −44 .github/workflows/pr-solr-tests.yml
+5 −5 .github/workflows/pr-unit-tests.yml
+29 −44 .github/workflows/pr-varnish-tests.yml
+15 −6 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+17 −0 CHANGELOG.md
+8 −0 README.md
+12 −1 docs/.eslintrc.json
+62 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −62 docs/.vuepress/config.js
+2 −2 docs/caveats.md
+22 −22 docs/config.md
+30 −97 docs/development.md
+3 −38 docs/getting-started.md
+26 −0 docs/guides.md
+1 −1 docs/guides/adding-more-tooling.md
+0 −0 docs/guides/external-access.md
+0 −0 docs/guides/manually-importing-databases.md
+6 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/pshicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+21 −6 netlify.toml
+8,624 −0 package-lock.json
+19 −15 package.json
+62 −0 update-lando-repos.sh
+0 −4,834 yarn.lock
2 changes: 1 addition & 1 deletion plugins/postgres
2 changes: 1 addition & 1 deletion plugins/redis
Submodule redis updated 51 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+25 −43 .github/workflows/pr-redis-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+26 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+6 −2 builders/redis.js
+0 −0 config/redis.conf
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+19 −3 docs/config.md
+29 −44 docs/development.md
+4 −37 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!81562!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/redisicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+4 −1 examples/2.x/.lando.yml
+3 −0 examples/2.x/README.md
+4 −1 examples/4.x/.lando.yml
+3 −0 examples/4.x/README.md
+4 −1 examples/5.x/.lando.yml
+3 −0 examples/5.x/README.md
+4 −1 examples/6.x/.lando.yml
+3 −0 examples/6.x/README.md
+1 −0 examples/7.x/.gitignore
+14 −0 examples/7.x/.lando.yml
+50 −0 examples/7.x/README.md
+20 −5 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/solr
Submodule solr updated 96 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+32 −45 .github/workflows/pr-solr-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+2 −2 .lando.yml
+1 −1 .node-version
+27 −3 CHANGELOG.md
+6 −0 README.md
+0 −14 actions-lando-config.yml
+17 −2 builders/solr.js
+0 −0 config/start-solr-3.sh
+0 −0 config/start-solr-4.sh
+46 −0 config/start-solr-9.sh
+0 −0 config/start-solr.sh
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+4 −4 docs/config.md
+29 −44 docs/development.md
+30 −63 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!81991!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/solricon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/3.x/.lando.yml
+2 −1 examples/4.x/.lando.yml
+2 −1 examples/5.x/.lando.yml
+2 −1 examples/6.x/.lando.yml
+2 −1 examples/7.x/.lando.yml
+2 −1 examples/8.x/.lando.yml
+29 −0 examples/9.x/.lando.yml
+8 −0 examples/9.x/9.x-conf/lang/contractions_ca.txt
+15 −0 examples/9.x/9.x-conf/lang/contractions_fr.txt
+5 −0 examples/9.x/9.x-conf/lang/contractions_ga.txt
+23 −0 examples/9.x/9.x-conf/lang/contractions_it.txt
+5 −0 examples/9.x/9.x-conf/lang/hyphenations_ga.txt
+6 −0 examples/9.x/9.x-conf/lang/stemdict_nl.txt
+420 −0 examples/9.x/9.x-conf/lang/stoptags_ja.txt
+125 −0 examples/9.x/9.x-conf/lang/stopwords_ar.txt
+193 −0 examples/9.x/9.x-conf/lang/stopwords_bg.txt
+220 −0 examples/9.x/9.x-conf/lang/stopwords_ca.txt
+172 −0 examples/9.x/9.x-conf/lang/stopwords_cz.txt
+110 −0 examples/9.x/9.x-conf/lang/stopwords_da.txt
+294 −0 examples/9.x/9.x-conf/lang/stopwords_de.txt
+78 −0 examples/9.x/9.x-conf/lang/stopwords_el.txt
+54 −0 examples/9.x/9.x-conf/lang/stopwords_en.txt
+356 −0 examples/9.x/9.x-conf/lang/stopwords_es.txt
+1,603 −0 examples/9.x/9.x-conf/lang/stopwords_et.txt
+99 −0 examples/9.x/9.x-conf/lang/stopwords_eu.txt
+313 −0 examples/9.x/9.x-conf/lang/stopwords_fa.txt
+97 −0 examples/9.x/9.x-conf/lang/stopwords_fi.txt
+186 −0 examples/9.x/9.x-conf/lang/stopwords_fr.txt
+110 −0 examples/9.x/9.x-conf/lang/stopwords_ga.txt
+161 −0 examples/9.x/9.x-conf/lang/stopwords_gl.txt
+235 −0 examples/9.x/9.x-conf/lang/stopwords_hi.txt
+211 −0 examples/9.x/9.x-conf/lang/stopwords_hu.txt
+46 −0 examples/9.x/9.x-conf/lang/stopwords_hy.txt
+359 −0 examples/9.x/9.x-conf/lang/stopwords_id.txt
+303 −0 examples/9.x/9.x-conf/lang/stopwords_it.txt
+127 −0 examples/9.x/9.x-conf/lang/stopwords_ja.txt
+172 −0 examples/9.x/9.x-conf/lang/stopwords_lv.txt
+119 −0 examples/9.x/9.x-conf/lang/stopwords_nl.txt
+194 −0 examples/9.x/9.x-conf/lang/stopwords_no.txt
+253 −0 examples/9.x/9.x-conf/lang/stopwords_pt.txt
+233 −0 examples/9.x/9.x-conf/lang/stopwords_ro.txt
+243 −0 examples/9.x/9.x-conf/lang/stopwords_ru.txt
+133 −0 examples/9.x/9.x-conf/lang/stopwords_sv.txt
+119 −0 examples/9.x/9.x-conf/lang/stopwords_th.txt
+212 −0 examples/9.x/9.x-conf/lang/stopwords_tr.txt
+29 −0 examples/9.x/9.x-conf/lang/userdict_ja.txt
+1,031 −0 examples/9.x/9.x-conf/managed-schema.xml
+21 −0 examples/9.x/9.x-conf/protwords.txt
+1,142 −0 examples/9.x/9.x-conf/solrconfig.xml
+14 −0 examples/9.x/9.x-conf/stopwords.txt
+29 −0 examples/9.x/9.x-conf/synonyms.txt
+62 −0 examples/9.x/README.md
+7 −0 examples/9.x/test.xml
+20 −5 netlify.toml
+7,543 −0 package-lock.json
+11 −13 package.json
+0 −0 tmpfile
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/symfony
Submodule symfony updated 102 files
2 changes: 1 addition & 1 deletion plugins/varnish
Submodule varnish updated 50 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+31 −43 .github/workflows/pr-varnish-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+2 −2 .lando.yml
+1 −1 .node-version
+28 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+15 −0 builders/varnish-nginx.js
+5 −4 builders/varnish.js
+0 −0 config/lando.default.vcl.tmpl
+0 −0 config/lando.varnishd.init.d.tmpl
+0 −0 config/launch.sh
+0 −0 config/ssl-termination.conf.tpl
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+5 −5 docs/config.md
+29 −44 docs/development.md
+3 −38 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!82725!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/varnishicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/4.x/.lando.yml
+2 −2 examples/4.x/README.md
+2 −1 examples/6.x/.lando.yml
+2 −2 examples/6.x/README.md
+5 −3 examples/custom/.lando.yml
+20 −5 netlify.toml
+7,505 −0 package-lock.json
+12 −13 package.json
+0 −0 tmpfile
+1 −1 utils/clone-overrides.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/wordpress
Submodule wordpress updated 96 files
+3 −2 .eslintignore
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+19 −0 .github/workflows/label-add-to-project.yml
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+40 −44 .github/workflows/pr-wordpress-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+47 −0 CHANGELOG.md
+6 −0 README.md
+0 −12 actions-lando-config.yml
+15 −0 builders/wordpress-mariadb.js
+15 −0 builders/wordpress-mssql.js
+15 −0 builders/wordpress-mysql.js
+18 −0 builders/wordpress-nginx.js
+32 −0 builders/wordpress-php.js
+15 −0 builders/wordpress-postgres.js
+249 −0 builders/wordpress.js
+1 −0 config/default.conf.tpl
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+49 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+12 −12 docs/config.md
+30 −45 docs/development.md
+36 −32 docs/getting-started.md
+3 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!82836!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/wordpressicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+3 −0 examples/.lando.yml
+23 −0 examples/wordpress-custom/.lando.yml
+71 −0 examples/wordpress-custom/README.md
+1 −0 examples/wordpress-custom/bob/index.php
+1 −0 examples/wordpress-custom/bob/info.php
+40 −0 examples/wordpress-custom/config/default.conf
+2 −2 examples/wordpress-custom/config/mysql.cnf
+1 −1 examples/wordpress-custom/config/php.ini
+6 −0 examples/wordpress-defaults/.lando.yml
+72 −0 examples/wordpress-defaults/README.md
+1 −0 examples/wordpress-defaults/index.php
+1 −0 examples/wordpress-defaults/info.php
+11 −0 examples/wordpress-downstreamer-1/.lando.yml
+44 −0 examples/wordpress-downstreamer-1/README.md
+1 −0 examples/wordpress-downstreamer-1/index.php
+1 −0 examples/wordpress-downstreamer-1/info.php
+11 −0 examples/wordpress-downstreamer-2/.lando.yml
+44 −0 examples/wordpress-downstreamer-2/README.md
+1 −0 examples/wordpress-downstreamer-2/index.php
+1 −0 examples/wordpress-downstreamer-2/info.php
+4 −0 examples/wordpress-export/.gitignore
+6 −0 examples/wordpress-export/.lando.yml
+61 −0 examples/wordpress-export/README.md
+1 −0 examples/wordpress-export/index.php
+1 −0 examples/wordpress-export/info.php
+59 −0 examples/wordpress-export/mysql-test.sql
+12 −0 examples/wordpress-import/.lando.yml
+56 −0 examples/wordpress-import/README.md
+24 −0 examples/wordpress-import/big-bad-dump.sql
+1 −0 examples/wordpress-import/index.php
+1 −0 examples/wordpress-import/info.php
+59 −0 examples/wordpress-import/mysql-test.sql
+59 −0 examples/wordpress-import/subdir/test.sql
+4 −0 examples/wordpress-import/test.sh
+0 −0 examples/wordpress-init/.gitignore
+1 −1 examples/wordpress-init/README.md
+1 −0 examples/wordpress-mysql8/.gitignore
+86 −0 examples/wordpress-mysql8/README.md
+14 −0 examples/wordpress-nginx/.lando.yml
+50 −0 examples/wordpress-nginx/README.md
+1 −0 examples/wordpress-nginx/web/index.php
+1 −0 examples/wordpress-nginx/web/info.php
+0 −0 inits/wordpress.js
+20 −5 netlify.toml
+7,684 −0 package-lock.json
+18 −14 package.json
+0 −53 recipes/wordpress/builder.js
+1 −1 utils/get-phar.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion setup-lando
Submodule setup-lando updated 38 files
+23 −0 .github/PULL_REQUEST_TEMPLATE.md
+27 −0 .github/workflows/label-add-to-project.yml
+1 −1 .github/workflows/pr-actions-config-tests.yml
+1 −1 .github/workflows/pr-actions-file-tests.yml
+1 −1 .github/workflows/pr-actions-os-tests.yml
+2 −1 .github/workflows/pr-actions-setup.yml
+1 −1 .github/workflows/pr-actions-versions-tests.yml
+2 −0 .github/workflows/pr-linter.yml
+1 −1 .github/workflows/pr-posix-script-bad-versions-tests.yml
+3 −4 .github/workflows/pr-posix-script-curl-tests.yml
+1 −1 .github/workflows/pr-posix-script-os-tests.yml
+46 −0 .github/workflows/pr-posix-script-replacer-tests.yml
+1 −1 .github/workflows/pr-posix-script-versions-tests.yml
+34 −0 .github/workflows/pr-windows-script-bad-versions-tests.yml
+52 −0 .github/workflows/pr-windows-script-pipeline-tests.yml
+34 −0 .github/workflows/pr-windows-script-shell-tests.yml
+48 −0 .github/workflows/pr-windows-script-versions-tests.yml
+32 −0 .github/workflows/release-tests.yml
+4 −3 .github/workflows/release.yml
+27 −0 CHANGELOG.md
+5 −0 README.md
+266 −108 dist/index.js
+1 −1 dist/index.js.map
+0 −25 dist/licenses.txt
+2 −2 dist/setup-lando.js
+641 −0 dist/setup-lando.ps1
+30 −14 dist/setup-lando.sh
+4 −19 docs/.vitepress/config.mjs
+1 −0 docs/gha.md
+53 −11 docs/windows.md
+1 −1 netlify.toml
+118 −127 package-lock.json
+3 −4 package.json
+2 −2 setup-lando.js
+641 −0 setup-lando.ps1
+29 −13 setup-lando.sh
+6 −10 utils/parse-setup-command.js
+15 −1 versioner.js

0 comments on commit 2a01b8b

Please sign in to comment.