Skip to content

Commit

Permalink
Updated version information for TYPO3 v13
Browse files Browse the repository at this point in the history
  • Loading branch information
rvock committed Oct 21, 2024
1 parent 3d1e023 commit 0f8e439
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
php: [ '8.1' ]
TYPO3: [ '12' ]
php: [ '8.2' ]
TYPO3: [ '13' ]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -40,11 +40,11 @@ jobs:
composer install --no-progress --prefer-dist
- name: Lint PHP
if: matrix.php == '8.1' && (success() || failure())
if: matrix.php == '8.2' && (success() || failure())
run: composer run-script phplint

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

- name: phpstan
Expand Down
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
"role": "Developer"
}],
"require": {
"php": "^8.1.0",
"helhum/typo3-console": "^8.0.0",
"php": "^8.2.0",
"linkorb/jsmin-php": "^1.0",
"masterminds/html5": "^2.6",
"thecodingmachine/safe": "^2.5",
"typo3/cms-install": "^13.4",
"vierwd/svg-inliner": "^1.0",
"vierwd/typo3-smarty": "^12.x-dev"
"vierwd/typo3-smarty": "^13.x-dev"
},
"require-dev": {
"b13/container": "^2.3",
"b13/container": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.15.0",
"jangregor/phpstan-prophecy": "^1.0.0",
Expand All @@ -36,15 +36,15 @@
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-doctrine": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "^11.0",
"saschaegerer/phpstan-typo3": "^1.1.0",
"typo3/cms-core": "^12.3",
"typo3/cms-fluid": "^12.3",
"typo3/cms-frontend": "^12.3",
"typo3/cms-impexp": "^12.3",
"typo3/cms-indexed-search": "^12.3",
"typo3/cms-reports": "^12.3",
"typo3/testing-framework": "7.x-dev",
"typo3/cms-core": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-impexp": "^13.4",
"typo3/cms-indexed-search": "^13.4",
"typo3/cms-reports": "^13.4",
"typo3/testing-framework": "^9.0.0",
"vierwd/coding-standard": "dev-master"
},
"autoload": {
Expand Down Expand Up @@ -74,7 +74,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "12.0.x-dev"
"dev-main": "13.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
Expand Down
5 changes: 2 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 1,
'lockType' => '',
'version' => '2.3.1',
'version' => '13.0.0',
'constraints' => [
'depends' => [],
'conflicts' => [],
'suggests' => [
'gridelements' => '*',
'container' => '*',
],
],
];

0 comments on commit 0f8e439

Please sign in to comment.