Skip to content

Commit

Permalink
[TASK] Add support for T3 v12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
twoldanski authored and lukaszuznanski committed Nov 14, 2023
1 parent a16b766 commit d668e7c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Classes/CacheManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function execute(): void
}

// initialize all connections
$active = null;
$active = 0;
do {
$multiExecResult = curl_multi_exec($multiHandle, $active);
$this->logger->debug('status init: ' . $multiExecResult);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": ["GPL-2.0+"],
"keywords": ["TYPO3 CMS", "Purge"],
"require": {
"typo3/cms-core": "^11.5"
"typo3/cms-core": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
'title' => 'Cache Purger',
'description' => 'Purge cached URLs within Varnish instances',
'category' => 'misc',
'version' => '2.0.0',
'version' => '3.0.0',
'state' => 'stable',
'clearCacheOnLoad' => 0,
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.5.99',
'typo3' => '11.5.0-12.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

defined('TYPO3_MODE') || die();
defined('TYPO3') || die();

call_user_func(
static function (string $extensionKey): void {
Expand Down

0 comments on commit d668e7c

Please sign in to comment.