mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-10 03:56:12 +01:00

[TASK] Allow installation on TYPO3 V11 (#293)

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
Łukasz Uznański 2021-09-22 17:14:29 +02:00 committed by GitHub
parent 8282a886c0
commit a2342d5421
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View file

@ -31,6 +31,7 @@ jobs:
- 7.2 - 7.2
- 7.3 - 7.3
- 7.4 - 7.4
- 8.0
code-quality: code-quality:
name: "Code quality checks" name: "Code quality checks"
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View file

@ -22,10 +22,10 @@
], ],
"require": { "require": {
"php": "~7.2.0 || ~7.3.0 || ~7.4.0", "php": "~7.2.0 || ~7.3.0 || ~7.4.0",
"typo3/cms-core": "^9.5 || ^10.4", "typo3/cms-core": "^9.5 || ^10.4 || ^11.4",
"typo3/cms-extbase": "^9.5 || ^10.4", "typo3/cms-extbase": "^9.5 || ^10.4 || ^11.4",
"typo3/cms-fluid": "^9.5 || ^10.4", "typo3/cms-fluid": "^9.5 || ^10.4 || ^11.4",
"typo3/cms-frontend": "^9.5 || ^10.4" "typo3/cms-frontend": "^9.5 || ^10.4 || ^11.4"
}, },
"replace": { "replace": {
"typo3-ter/tea": "self.version" "typo3-ter/tea": "self.version"
@ -50,7 +50,7 @@
"seld/jsonlint": "^1.8.3", "seld/jsonlint": "^1.8.3",
"squizlabs/php_codesniffer": "^3.6.0", "squizlabs/php_codesniffer": "^3.6.0",
"symfony/yaml": "^4.4.29 || ^5.3.6", "symfony/yaml": "^4.4.29 || ^5.3.6",
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4" "typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.4"
}, },
"config": { "config": {
"preferred-install": { "preferred-install": {

View file

@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [
'constraints' => [ 'constraints' => [
'depends' => [ 'depends' => [
'php' => '7.2.0-7.4.99', 'php' => '7.2.0-7.4.99',
'typo3' => '9.5.0-10.99.99', 'typo3' => '9.5.0-11.4.99',
], ],
], ],
'state' => 'stable', 'state' => 'stable',