Skip to content

Commit

Permalink
[TASK] Raise TYPO3 core version constraint
Browse files Browse the repository at this point in the history
Support for TYPO3
- 8.7 LTS
- 9.1.0 - 9.3.99
  • Loading branch information
josefglatz committed Jul 17, 2018
1 parent d239862 commit fc4282f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"GPL-3.0"
],
"require": {
"typo3/cms-core": "^8.7"
"typo3/cms-core": "^8.7 || >=9.1.0 <9.4.0"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "^2.0",
Expand Down
46 changes: 23 additions & 23 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<?php
$EM_CONF[$_EXTKEY] = array (
$EM_CONF[$_EXTKEY] = [
'title' => 'Icon Check: show registered icons',
'description' => 'Module for listing all registered icons',
'description' => 'Module for listing (all) registered icons',
'category' => 'be',
'author' => 'Josef Glatz',
'state' => 'stable',
'version' => '1.0.2',
'constraints' =>
array (
'depends' =>
array (
'typo3' => '8.7.0-8.7.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
'autoload' =>
array (
'psr-4' =>
array (
'JosefGlatz\\IconCheck\\' => 'Classes',
),
),
);
'constraints' =>
[
'depends' =>
[
'typo3' => '8.7.0-9.3.99',
],
'conflicts' =>
[
],
'suggests' =>
[
],
],
'autoload' =>
[
'psr-4' =>
[
'JosefGlatz\\Iconcheck\\' => 'Classes',
],
],
];

0 comments on commit fc4282f

Please sign in to comment.