Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Fix instructions for running Typo3 version 13 using ddev #433

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions templates/default/partials/version/download.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
{% endif %}
{% set php_version_option = "" %}
{% set console = true %}
{% if version == 12 %}
{% set php_version_option = " --php-version 8.1" %}
{% if version >= 12 %}
{% set php_version_option = " --php-version 8.2" %}
{% set console = false %}
{% elseif version <= 10 %}
{% set php_version_option = " --php-version 7.4" %}
Expand All @@ -39,7 +39,7 @@
<pre><code>ddev config --project-type=typo3 --docroot=public --create-docroot{{ php_version_option }}
ddev composer create --no-install "typo3/cms-base-distribution:^{{ package_version }}"
ddev composer install
{% if version == 12 %}
{% if version >= 12 %}
ddev restart
{% endif %}
{% if console %}
Expand Down