Skip to content

Commit

Permalink
Fix version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
r3h6 committed May 31, 2023
1 parent 117850e commit fc0fbd3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
matrix:
env:
- { PHP: '8.2', TYPO3_VERSION: ^12.3 }
- { PHP: '8.1', TYPO3_VERSION: ^12.3 }
- { PHP: '8.2', TYPO3_VERSION: ^12.4 }
- { PHP: '8.1', TYPO3_VERSION: ^12.4 }
- { PHP: '8.2', TYPO3_VERSION: ^11.5 }
- { PHP: '8.1', TYPO3_VERSION: ^11.5 }
- { PHP: '8.0', TYPO3_VERSION: ^11.5 }
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^11.5 || ^12.3",
"typo3/cms-form": "^11.5 || ^12.3",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-form": "^11.5 || ^12.4",
"softcreatr/jsonpath": "^0.7.5 || ^0.8.2",
"php": ">= 7.4, < 8.3"
},
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
'author_email' => '[email protected]',
'state' => 'beta',
'clearCacheOnLoad' => 0,
'version' => '2.0.0',
'version' => '2.0.1',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.3.99',
'form' => '11.5.0-12.3.99',
'typo3' => '11.5.0-12.4.99',
'form' => '11.5.0-12.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit fc0fbd3

Please sign in to comment.