From d5b58f39abead3469d062b76b04a2d6f1865ef44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=B6ffler?= Date: Fri, 24 Jul 2020 10:07:07 +0200 Subject: [PATCH] Update ddev config to have same versions as on production * Use PHP 7.4 * Use MariaDB 10.3 --- .ddev/config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 6a9fe0e7..8f1322bd 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,14 +1,14 @@ name: ter type: typo3 docroot: public -php_version: "7.2" +php_version: "7.4" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] -mariadb_version: "10.2" +mariadb_version: "10.3" provider: default hooks: post-import-db: @@ -20,7 +20,7 @@ hooks: - exec: vendor/bin/typo3cms install:generatepackagestates - exec: vendor/bin/typo3cms install:extensionsetupifpossible omit_containers: [dba] -webimage_extra_packages: [php7.2-ldap] +webimage_extra_packages: [php7.4-ldap] use_dns_when_possible: true timezone: Europe/Berlin @@ -158,9 +158,9 @@ timezone: Europe/Berlin # In this case the user must provide all such settings. # no_project_mount: false -# (Experimental) If true, ddev will not mount the project into the web container; +# (Experimental) If true, ddev will not mount the project into the web container; # the user is responsible for mounting it manually or via a script. -# This is to enable experimentation with alternate file mounting strategies. +# This is to enable experimentation with alternate file mounting strategies. # For advanced users only! # provider: default # Currently either "default" or "pantheon" -- GitLab