Skip to content

Commit

Permalink
[TASK] Drop v10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Nov 18, 2021
1 parent c978937 commit 121a34d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 53 deletions.
29 changes: 1 addition & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,9 @@ jobs:
strategy:
fail-fast: false
matrix:
typo3: [ ^10.4, ^11.0 ]
typo3: [ ^11.0 ]
php: [ '7.4' ]
mysql: ['5.7']
include:
- typo3: ^10.4
php: '7.4'
mysql: '5.7'
coverage: true
- typo3: ^10.4
php: '7.2'
mysql: '5.7'
- typo3: ^10.4
php: '7.3'
mysql: '5.7'

steps:
- name: Checkout Code
Expand Down Expand Up @@ -63,34 +52,18 @@ jobs:
- name: CGL
run: php-cs-fixer fix --dry-run --verbose

- name: Unit Tests without coverage
if: matrix.typo3 != '^10.4'
run: composer t3g:test:php:unit

- name: Unit Tests with coverage
if: matrix.typo3 == '^10.4'
run: composer t3g:test:php:unit:cover

- name: Functional Tests without coverage
run: composer t3g:test:php:functional
if: matrix.typo3 != '^10.4'
env:
typo3DatabaseHost: 127.0.0.1
typo3DatabaseName: t3func
typo3DatabasePassword: root
typo3DatabaseUsername: root

- name: Functional Tests with coverage
run: composer t3g:test:php:functional:cover
if: matrix.typo3 == '^10.4'
env:
typo3DatabaseHost: 127.0.0.1
typo3DatabaseName: t3func
typo3DatabasePassword: root
typo3DatabaseUsername: root

- name: Upload coverage results to Coveralls
if: matrix.typo3 == '^10.4'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[general]

project = TYPO3 Blog Extension
version = 11.0.0
release = 11.0.0
version = 12.0.0-dev
release = 12.0.0-dev
t3author = TYPO3 GmbH
copyright = since 2016 by TYPO3 GmbH
description = The blog extension for TYPO3 provides a blog based on TYPO3s core features - pages and content element.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ This blog extension uses TYPO3s core concepts and elements to provide a full-blo

| Version | TYPO3 | PHP |
|----------|-----------------------|----------|
| master | ^10.4 or ^11.0 | ^7.2 |
| master | ^11.5 | ^7.4 |
| v11.0.x | ^10.4 or ^11.5 | ^7.2 |
| v10.0.x | ^9.5 or ^10.4 | ^7.2 |
| v9.1.x | ^9.5 | ^7.2 |
| v9.0.x | ^9.5 | ^7.2 |
Expand Down
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"app-dir": ".build"
},
"branch-alias": {
"dev-master": "11.0.x-dev"
"dev-master": "12.0.x-dev"
}
},
"scripts": {
Expand Down Expand Up @@ -80,32 +80,32 @@
"typo3/cms-fluid-styled-content": "Content rendering definition based on fluid"
},
"require": {
"php": "^7.2",
"php": "^7.4",
"ext-json": "*",
"ext-pdo": "*",
"psr/http-message": "^1.0",
"typo3/cms-backend": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-core": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-extbase": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-extensionmanager": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-fluid": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-form": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-frontend": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-install": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-backend": "^11.5",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-extensionmanager": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-form": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-install": "^11.5",
"typo3fluid/fluid": "^2.6",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"typo3/cms-belog": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-beuser": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-seo": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-filelist": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-fluid-styled-content": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-lowlevel": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-setup": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-tstemplate": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-rte-ckeditor": "^10.4 || ^11.5 || 11.*.*@dev",
"typo3/cms-belog": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-seo": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"friendsofphp/php-cs-fixer": "^3.1",
"typo3/testing-framework": "^6.4",
"bk2k/bootstrap-package": "^12",
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
'state' => 'stable',
'author' => 'TYPO3 GmbH',
'author_email' => '[email protected]',
'version' => '11.0.0',
'version' => '12.0.0-dev',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-11.0.99',
'form' => '10.4.0-11.0.99',
'typo3' => '11.5.0-11.5.99',
'form' => '11.5.0-11.5.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 121a34d

Please sign in to comment.