mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01:00
[FEATURE] Add support for TYPO3 9.6 (#48)
This commit is contained in:
parent
5b0d040e06
commit
1c82c6d3a2
5 changed files with 14 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
||||||
/.php_cs.cache
|
/.php_cs.cache
|
||||||
composer.lock
|
composer.lock
|
||||||
/nbproject
|
/nbproject
|
||||||
|
/var
|
||||||
|
|
|
@ -54,6 +54,9 @@ script:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
- stage: test
|
||||||
|
php: "7.2"
|
||||||
|
env: TYPO3=^9.5
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.2"
|
php: "7.2"
|
||||||
env: TYPO3=^8.7
|
env: TYPO3=^8.7
|
||||||
|
@ -63,6 +66,9 @@ jobs:
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.0"
|
php: "7.0"
|
||||||
env: TYPO3=^8.7
|
env: TYPO3=^8.7
|
||||||
|
- stage: test
|
||||||
|
php: "7.2"
|
||||||
|
env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.2"
|
php: "7.2"
|
||||||
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||||
|
|
|
@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
## x.y.z
|
## x.y.z
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
- Add support for TYPO3 9.6 (#48)
|
||||||
- Add PHP_CodeSniffer to the Travis CI build (#44,#46)
|
- Add PHP_CodeSniffer to the Travis CI build (#44,#46)
|
||||||
- Auto-release to the TER (#34)
|
- Auto-release to the TER (#34)
|
||||||
- Composer script for PHP linting
|
- Composer script for PHP linting
|
||||||
|
|
|
@ -27,13 +27,13 @@
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.0 || ~7.1 || ~7.2",
|
"php": "~7.0 || ~7.1 || ~7.2",
|
||||||
"typo3/cms-core": "^8.7.10",
|
"typo3/cms-core": "^8.7.10 || ^9.5.4",
|
||||||
"typo3/cms-extbase": "^8.7",
|
"typo3/cms-extbase": "^8.7 || ^9.5",
|
||||||
"typo3/cms-fluid": "^8.7",
|
"typo3/cms-fluid": "^8.7 || ^9.5",
|
||||||
"typo3/cms-frontend": "^8.7"
|
"typo3/cms-frontend": "^8.7 || ^9.5"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"typo3/cms-fluid-styled-content": "^8.7",
|
"typo3/cms-fluid-styled-content": "^8.7 || ^9.5",
|
||||||
"helhum/typo3-composer-setup": "^0.5.4",
|
"helhum/typo3-composer-setup": "^0.5.4",
|
||||||
"squizlabs/php_codesniffer": "^3.4.2",
|
"squizlabs/php_codesniffer": "^3.4.2",
|
||||||
"helmich/typo3-typoscript-lint": "^1.5.0",
|
"helmich/typo3-typoscript-lint": "^1.5.0",
|
||||||
|
|
|
@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'php' => '7.0.0-7.2.99',
|
'php' => '7.0.0-7.2.99',
|
||||||
'typo3' => '8.7.0-8.7.99',
|
'typo3' => '8.7.0-9.5.99',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'state' => 'stable',
|
'state' => 'stable',
|
||||||
|
|
Loading…
Reference in a new issue