Skip to content

Commit 0ca955b

Browse files
committed
[FEATURE] Mark as compatible with TYPO3 10.4
1 parent fad77d3 commit 0ca955b

3 files changed

Lines changed: 20 additions & 5 deletions

File tree

.travis.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ before_install:
2626
- phpenv config-rm xdebug.ini
2727

2828
install:
29-
- composer require typo3/minimal=$TYPO3_VERSION
29+
- composer require --dev typo3/minimal=$TYPO3_VERSION
3030

3131
script:
3232
- >
@@ -51,6 +51,21 @@ script:
5151
jobs:
5252
fast_finish: true
5353
include:
54+
- stage: test
55+
php: 7.4
56+
env: TYPO3_VERSION=^10.4
57+
- stage: test
58+
php: 7.3
59+
env: TYPO3_VERSION=^10.4
60+
- stage: test
61+
php: 7.2
62+
env: TYPO3_VERSION=^10.4
63+
- stage: test
64+
php: 7.4
65+
env: TYPO3_VERSION=^9.5
66+
- stage: test
67+
php: 7.3
68+
env: TYPO3_VERSION=^9.5
5469
- stage: test
5570
php: 7.2
5671
env: TYPO3_VERSION=^9.5

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"license": "GPL-2.0-or-later",
2323
"require": {
2424
"php": "^7.2",
25-
"typo3/cms-core": "^9.5"
25+
"typo3/cms-core": "^9.5 || ^10.4"
2626
},
2727
"require-dev": {
28-
"nimut/testing-framework": "^4.0",
28+
"nimut/testing-framework": "^4.0 || ^5.0",
2929
"typo3/minimal": "^9.5"
3030
},
3131
"autoload": {

ext_emconf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
'version' => '2.2.2',
1414
'constraints' => [
1515
'depends' => [
16-
'php' => '7.2.0-7.3.999',
17-
'typo3' => '9.5.0-9.5.99',
16+
'php' => '7.2.0-7.4.999',
17+
'typo3' => '9.5.0-10.4.99',
1818
],
1919
'conflicts' => [
2020
],

0 commit comments

Comments
 (0)