From f8639517e26458c6e09422fb1aace99e71a13709 Mon Sep 17 00:00:00 2001 From: Johannes Schlier Date: Thu, 26 Feb 2026 13:25:23 +0100 Subject: [PATCH] [TASK] Allow installation with TYPO3 14 --- .gitignore | 1 + composer.json | 2 +- ext_emconf.php | 2 +- ext_tables.sql | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/composer.json b/composer.json index 01f9abf..9888c39 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "license": ["GPL-2.0-or-later"], "require": { "php": "^8.1", - "typo3/cms-core": "^12.4 || ^13.0" + "typo3/cms-core": "^12.4 || ^13.0 || ^14" }, "replace": { "typo3-ter/masi": "self.version" diff --git a/ext_emconf.php b/ext_emconf.php index c3c14f5..5e88cd8 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -11,7 +11,7 @@ 'version' => '3.0.0', 'constraints' => [ 'depends' => [ - 'typo3' => '12.4.0-13.4.99', + 'typo3' => '12.4.0-14.4.99', ], ], ]; diff --git a/ext_tables.sql b/ext_tables.sql index 3ab7980..6af96bf 100644 --- a/ext_tables.sql +++ b/ext_tables.sql @@ -2,5 +2,5 @@ # Table structure for table 'pages' # CREATE TABLE pages ( - exclude_slug_for_subpages tinyint(1) DEFAULT '0' NOT NULL + exclude_slug_for_subpages tinyint(1) DEFAULT 0 NOT NULL );