Skip to content

Commit

Permalink
[TASK] Add more detailed version constraints
Browse files Browse the repository at this point in the history
Related #26
  • Loading branch information
ayacoo committed Dec 9, 2023
1 parent 65b4c68 commit 237b189
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ayacoo/redirect-tab",
"type": "typo3-cms-extension",
"version": "3.1.1",
"version": "3.1.2",
"description": "Show TYPO3 redirects in the page properties",
"authors": [
{
Expand All @@ -12,8 +12,9 @@
"homepage": "https://www.ayacoo.de/",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.1",
"typo3/cms-core": "^12.0"
"php": ">= 8.1 < 8.3",
"typo3/cms-core": "^12.4",
"typo3/cms-redirects": "^12.4"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 4 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
'author_email' => '[email protected]',
'state' => 'stable',
'clearCacheOnLoad' => 0,
'version' => '3.1.1',
'version' => '3.1.2',
'constraints' => [
'depends' => [
'typo3' => '12.0.0-12.99.99',
'typo3' => '12.4.0-12.9.99',
'redirects' => '12.4.0-12.9.99',
'php' => '8.1.0-8.2.99',
],
'conflicts' => [
],
Expand Down

0 comments on commit 237b189

Please sign in to comment.