2 Commits

Author SHA1 Message Date
Jürgen Mummert 141ef8b1b3 feat: assign imported events to tag 23 2026-03-01 22:29:36 +01:00
Jürgen Mummert 4764857306 chore: relax php requirement to ^8.3 2026-03-01 22:20:23 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
"type": "contao-bundle",
"license": "proprietary",
"require": {
"php": "^8.4",
"php": "^8.3",
"contao/core-bundle": "^5.7",
"contao/calendar-bundle": "^5.7",
"contao/manager-plugin": "^2.0",
+1 -1
View File
@@ -27,7 +27,7 @@ class ImportEventsCommand extends Command
private const int TARGET_CALENDAR_ID = 1;
private const int TARGET_ORGANIZATION_ID = 142;
private const int TARGET_AUTHOR_ID = 8;
private const array DEFAULT_TAGS = [7, 8];
private const array DEFAULT_TAGS = [23];
public function __construct(
private readonly ContaoFramework $framework,