Skip to content

Commit

Permalink
Remove usage TYPO3_MODE, rise TYPO3 req to 11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tmotyl authored May 4, 2023
1 parent a5bf441 commit dcda34f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"MIT"
],
"require": {
"typo3/cms-core": ">=7.6.0",
"typo3/cms-core": ">=11.5.0",
"microsoft/azure-storage-blob": "^1.2.0"
},
"autoload": {
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
'title' => 'Azure Storage',
'description' => 'Microsoft Azure Blob Storage for TYPO3',
'category' => 'be',
'version' => '0.6.1',
'state' => 'beta',
'version' => '1.0.0',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Macopedia.com team',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-12.4.99'
'typo3' => '11.5.0-12.4.99'
],
],
];
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

if (!defined('TYPO3_MODE')) {
if (!defined('TYPO3')) {
die('Access denied.');
}

Expand Down

0 comments on commit dcda34f

Please sign in to comment.