mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:16:12 +02:00

[FEATURE] Add support for TYPO3 9.6 (#48)

This commit is contained in:
Oliver Klee 2019-08-12 15:41:55 +02:00 committed by GitHub
parent 5b0d040e06
commit 1c82c6d3a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 6 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@
/.php_cs.cache
composer.lock
/nbproject
/var

View file

@ -54,6 +54,9 @@ script:
jobs:
include:
- stage: test
php: "7.2"
env: TYPO3=^9.5
- stage: test
php: "7.2"
env: TYPO3=^8.7
@ -63,6 +66,9 @@ jobs:
- stage: test
php: "7.0"
env: TYPO3=^8.7
- stage: test
php: "7.2"
env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest"
- stage: test
php: "7.2"
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"

View file

@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## x.y.z
### Added
- Add support for TYPO3 9.6 (#48)
- Add PHP_CodeSniffer to the Travis CI build (#44,#46)
- Auto-release to the TER (#34)
- Composer script for PHP linting

View file

@ -27,13 +27,13 @@
},
"require": {
"php": "~7.0 || ~7.1 || ~7.2",
"typo3/cms-core": "^8.7.10",
"typo3/cms-extbase": "^8.7",
"typo3/cms-fluid": "^8.7",
"typo3/cms-frontend": "^8.7"
"typo3/cms-core": "^8.7.10 || ^9.5.4",
"typo3/cms-extbase": "^8.7 || ^9.5",
"typo3/cms-fluid": "^8.7 || ^9.5",
"typo3/cms-frontend": "^8.7 || ^9.5"
},
"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",
"squizlabs/php_codesniffer": "^3.4.2",
"helmich/typo3-typoscript-lint": "^1.5.0",

View file

@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [
'constraints' => [
'depends' => [
'php' => '7.0.0-7.2.99',
'typo3' => '8.7.0-8.7.99',
'typo3' => '8.7.0-9.5.99',
],
],
'state' => 'stable',