Skip to content

Commit 0f8e439

Browse files
committed
Updated version information for TYPO3 v13
1 parent 3d1e023 commit 0f8e439

File tree

3 files changed

+19
-20
lines changed

3 files changed

+19
-20
lines changed

.github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
matrix:
12-
php: [ '8.1' ]
13-
TYPO3: [ '12' ]
12+
php: [ '8.2' ]
13+
TYPO3: [ '13' ]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3
@@ -40,11 +40,11 @@ jobs:
4040
composer install --no-progress --prefer-dist
4141
4242
- name: Lint PHP
43-
if: matrix.php == '8.1' && (success() || failure())
43+
if: matrix.php == '8.2' && (success() || failure())
4444
run: composer run-script phplint
4545

4646
- name: PHP CS
47-
if: matrix.php == '8.1' && (success() || failure())
47+
if: matrix.php == '8.2' && (success() || failure())
4848
run: composer run-script phpcs
4949

5050
- name: phpstan

composer.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
"role": "Developer"
1818
}],
1919
"require": {
20-
"php": "^8.1.0",
21-
"helhum/typo3-console": "^8.0.0",
20+
"php": "^8.2.0",
2221
"linkorb/jsmin-php": "^1.0",
2322
"masterminds/html5": "^2.6",
2423
"thecodingmachine/safe": "^2.5",
24+
"typo3/cms-install": "^13.4",
2525
"vierwd/svg-inliner": "^1.0",
26-
"vierwd/typo3-smarty": "^12.x-dev"
26+
"vierwd/typo3-smarty": "^13.x-dev"
2727
},
2828
"require-dev": {
29-
"b13/container": "^2.3",
29+
"b13/container": "^3.0",
3030
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
3131
"friendsofphp/php-cs-fixer": "^3.15.0",
3232
"jangregor/phpstan-prophecy": "^1.0.0",
@@ -36,15 +36,15 @@
3636
"phpstan/phpstan-deprecation-rules": "^1.0.0",
3737
"phpstan/phpstan-doctrine": "^1.0.0",
3838
"phpstan/phpstan-phpunit": "^1.0.0",
39-
"phpunit/phpunit": "^9.0",
39+
"phpunit/phpunit": "^11.0",
4040
"saschaegerer/phpstan-typo3": "^1.1.0",
41-
"typo3/cms-core": "^12.3",
42-
"typo3/cms-fluid": "^12.3",
43-
"typo3/cms-frontend": "^12.3",
44-
"typo3/cms-impexp": "^12.3",
45-
"typo3/cms-indexed-search": "^12.3",
46-
"typo3/cms-reports": "^12.3",
47-
"typo3/testing-framework": "7.x-dev",
41+
"typo3/cms-core": "^13.4",
42+
"typo3/cms-fluid": "^13.4",
43+
"typo3/cms-frontend": "^13.4",
44+
"typo3/cms-impexp": "^13.4",
45+
"typo3/cms-indexed-search": "^13.4",
46+
"typo3/cms-reports": "^13.4",
47+
"typo3/testing-framework": "^9.0.0",
4848
"vierwd/coding-standard": "dev-master"
4949
},
5050
"autoload": {
@@ -74,7 +74,7 @@
7474
},
7575
"extra": {
7676
"branch-alias": {
77-
"dev-main": "12.0.x-dev"
77+
"dev-main": "13.0.x-dev"
7878
},
7979
"typo3/cms": {
8080
"cms-package-dir": "{$vendor-dir}/typo3/cms",

ext_emconf.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@
2525
'uploadfolder' => 0,
2626
'createDirs' => '',
2727
'modify_tables' => '',
28-
'clearCacheOnLoad' => 1,
2928
'lockType' => '',
30-
'version' => '2.3.1',
29+
'version' => '13.0.0',
3130
'constraints' => [
3231
'depends' => [],
3332
'conflicts' => [],
3433
'suggests' => [
35-
'gridelements' => '*',
34+
'container' => '*',
3635
],
3736
],
3837
];

0 commit comments

Comments
 (0)