Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
[TASK] Require ^12.4 for TYPO3 12 (#478)
Browse files Browse the repository at this point in the history
12.4 is the 12LTS release.

Fixes #469
  • Loading branch information
oliverklee authored Sep 19, 2023
1 parent 7b9b014 commit 98183ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ jobs:
composer require --no-progress typo3/cms-core:"$TYPO3"
composer show
- name: "Set up TYPO3 for < 12"
if : ${{ matrix.typo3-version != '^12.3' }}
if : ${{ matrix.typo3-version != '^12.4' }}
run: >
.Build/vendor/bin/typo3cms install:setup --no-interaction --site-setup-type="site"
--database-user-name="${DATABASE_USER}" --database-host-name="${DATABASE_HOST}"
--database-port="${{ job.services.mysql.ports[3306] }}" --database-name="${DATABASE_NAME}"
--admin-user-name="admin" --admin-password="334LKkq2()345d" --site-name="Test installation";
- name: "Set up TYPO3 for >= 12"
if : ${{ matrix.typo3-version == '^12.3' }}
if : ${{ matrix.typo3-version == '^12.4' }}
run: >
.Build/vendor/bin/typo3 setup --no-interaction --create-site="https://example.com"
--username="${DATABASE_USER}" --host="${DATABASE_HOST}"
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
php-version: "8.1"
- typo3-version: "^11.5"
php-version: "8.2"
- typo3-version: "^12.3"
- typo3-version: "^12.4"
php-version: "8.1"
- typo3-version: "^12.3"
- typo3-version: "^12.4"
php-version: "8.2"
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"require": {
"php": ">= 7.2",
"symfony/console": "^4.4 || ^5.4 || ^6.2",
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5.1 || ^12.3"
"typo3/cms-core": "^9.5 || ^10.4 || ^11.5.1 || ^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4.0",
Expand Down

0 comments on commit 98183ab

Please sign in to comment.