Skip to content

Commit 0eca053

Browse files
committed
[TASK] cleanup github ci, rm v11 from ci
1 parent 6ef309d commit 0eca053

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
TYPO3: [ '11' , '12', '13', '14' ]
11+
TYPO3: [ '12', '13', '14' ]
1212

1313
steps:
1414
- name: Checkout
@@ -39,27 +39,17 @@ jobs:
3939
- name: Install composer dependencies TYPO3 13
4040
if: matrix.TYPO3 == '13'
4141
run: |
42-
composer install --no-progress --no-interaction
42+
composer require typo3/cms-core:^13.4 --no-progress --no-interaction --dev -W
4343
- name: Install composer dependencies TYPO3 12
4444
if: matrix.TYPO3 == '12'
4545
run: |
4646
composer require typo3/cms-core:^12.4 --no-progress --no-interaction --dev -W
47-
- name: Install composer dependencies TYPO3 11
48-
if: matrix.TYPO3 == '11'
49-
run: |
50-
composer require typo3/cms-core:^11.5 --no-progress --no-interaction --dev -W
51-
- name: Phpstan 14
52-
if: matrix.TYPO3 == '14'
53-
run: .Build/bin/phpstan analyze -c Build/phpstan.neon
54-
- name: Phpstan 13
55-
if: matrix.TYPO3 == '13'
47+
- name: Phpstan 13/14
48+
if: matrix.TYPO3 == '14' || matrix.TYPO3 == '13'
5649
run: .Build/bin/phpstan analyze -c Build/phpstan.neon
5750
- name: Phpstan 12
5851
if: matrix.TYPO3 == '12'
5952
run: .Build/bin/phpstan analyze -c Build/phpstan12.neon
60-
- name: Phpstan 11
61-
if: matrix.TYPO3 == '11'
62-
run: .Build/bin/phpstan analyze -c Build/phpstan11.neon
6353
- name: Phpcsfix
6454
run: .Build/bin/php-cs-fixer fix --config=Build/php-cs-fixer.php --dry-run --stop-on-violation --using-cache=no
6555
- name: Functional Tests

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"minimum-stability": "dev",
2222
"prefer-stable": true,
2323
"require-dev": {
24-
"typo3/testing-framework": "^7.0 || ^8.0",
24+
"typo3/testing-framework": "^7.0 || ^8.0 || ^9.1",
2525
"typo3/cms-frontend": "^11.5 || ^12.4 || ^13.1 || ^14.0",
2626
"typo3/cms-workspaces": "^11.5 || ^12.4 || ^13.1 || ^14.0",
27-
"saschaegerer/phpstan-typo3": "^1.8",
27+
"phpstan/phpstan": "^1.10",
2828
"typo3/coding-standards": "^0.5.5",
2929
"b13/listelements-example": "*"
3030
},

0 commit comments

Comments
 (0)