Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'version' => '3.0.0',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-13.4.99',
'typo3' => '12.4.0-14.4.99',
],
],
];
2 changes: 1 addition & 1 deletion ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
);