lando / wordpress

The Official WordPress Lando Plugin
https://docs.lando.dev/wordpress/
GNU General Public License v3.0
13 stars 6 forks source link

Update to Lando 3.20.7 is breaking php #56

Closed mmodler closed 7 months ago

mmodler commented 7 months ago

With 3.20.7, the following lando nginx+php setup becomes unuseable:

WARN ==> php is not a supported service type. ERROR ==> Could not find a service builder called php in the builder registry!

name: test
services:
  appserver:
    type: php:8.1
    via: nginx:1.18
    ssl: true
    composer_version: 2
    webroot: public
    xdebug: off
    scanner: false
    config:
      vhosts: .lando/nginx.conf
      php: .lando/php.ini
  appserver_nginx:
    scanner: false
  redis:
    type: redis
    portforward: 6379
tooling:
  composer:
    service: appserver
    cmd: php /usr/local/bin/composer
  php:
    service: appserver
  redis-cli:
    service: redis
proxy:
  appserver_nginx:
    - aaa.local
    - bbb.local
mmodler commented 7 months ago

Sorry for posting to the wrong issue tracker - came here searching the error message :) Feel free to move the issue.

mmodler commented 7 months ago

Fixed with 3.20.8 - Thanks!