Skip to content

Commit

Permalink
Switch to Contao 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Feb 16, 2024
1 parent dde5e75 commit 16711d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/TaskOperation/Contao/CreateContaoOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CreateContaoOperation extends AbstractInlineOperation
/**
* @var array
*/
private static $supportedVersions = ['4.9', '4.13', '5.2'];
private static $supportedVersions = ['4.9', '4.13', '5.3'];

/**
* @var Environment
Expand Down
10 changes: 5 additions & 5 deletions src/components/setup/CreateProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default {
processing: false,
isWeb: true,
version: '5.2',
version: '5.3',
demo: false,
view: 'require',
Expand All @@ -259,18 +259,18 @@ export default {
const versions = [];
versions.push({
value: '5.2',
label: `Contao 5.2 (${ this.$t('ui.setup.create-project.latestTitle') })`,
value: '5.3',
label: `Contao 5.3 (${ this.$t('ui.setup.create-project.latestTitle') } & ${ this.$t('ui.setup.create-project.ltsTitle') })`,
disabled: this.phpVersionId < 80100,
description: this.$t('ui.setup.create-project.latestQ1', { year: '2024' }),
description: this.$t('ui.setup.create-project.latestQ1', { year: '2027' }),
problem: this.$t('ui.setup.create-project.requiresPHP', { version: '8.1.0', current: this.phpVersion }),
});
versions.push({
value: '4.13',
label: `Contao 4.13 (${ this.$t('ui.setup.create-project.ltsTitle') })`,
disabled: this.phpVersionId < 70400,
description: this.$t('ui.setup.create-project.ltsText', { year: '2025' }),
description: this.$t('ui.setup.create-project.pltsText', { year: '2025' }),
problem: this.$t('ui.setup.create-project.requiresPHP', { version: '7.4.0', current: this.phpVersion }),
});
Expand Down

0 comments on commit 16711d8

Please sign in to comment.