Skip to content

Commit

Permalink
[TASK] Add v13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ayacoo committed Oct 26, 2024
1 parent aec7764 commit 17bb7fa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 15 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,16 +112,10 @@ jobs:
fail-fast: false
matrix:
include:
#- typo3-version: "^12.4"
#php-version: "8.2"
#composer-dependencies: highest
#- typo3-version: "^12.4"
#php-version: "8.3"
#composer-dependencies: highest
- typo3-version: "^13.1"
- typo3-version: "^13.4"
php-version: "8.2"
composer-dependencies: highest
- typo3-version: "^13.1"
- typo3-version: "^13.4"
php-version: "8.3"
composer-dependencies: highest
functional-tests:
Expand Down
4 changes: 2 additions & 2 deletions Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ case ${TEST_SUITE} in
fi
if [ ${TYPO3_VERSION} -eq 13 ]; then
composer require --no-ansi --no-interaction --no-progress --no-install \
typo3/cms-core:^13.3 || exit 1
typo3/cms-core:^13.4 || exit 1
fi
composer update --no-progress --no-interaction || exit 1
composer show || exit 1
Expand All @@ -542,7 +542,7 @@ case ${TEST_SUITE} in
fi
if [ ${TYPO3_VERSION} -eq 13 ]; then
composer require --no-ansi --no-interaction --no-progress --no-install \
typo3/cms-core:^13.3 || exit 1
typo3/cms-core:^13.4 || exit 1
fi
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest || exit 1
composer show || exit 1
Expand Down
6 changes: 3 additions & 3 deletions Build/testing-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ services:
fi
if [ ${TYPO3_VERSION} -eq 13 ]; then
composer require --no-ansi --no-interaction --no-progress --no-install \
typo3/cms-core:^13.1
typo3/cms-core:^13.4
fi
composer install --no-progress;
"
Expand Down Expand Up @@ -101,7 +101,7 @@ services:
fi
if [ ${TYPO3_VERSION} -eq 13 ]; then
composer require --no-ansi --no-interaction --no-progress --no-install \
typo3/cms-core:^13.1
typo3/cms-core:^13.4
fi
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest;
composer show;
Expand Down Expand Up @@ -131,7 +131,7 @@ services:
fi
if [ ${TYPO3_VERSION} -eq 13 ]; then
composer require --no-ansi --no-interaction --no-progress --no-install \
typo3/cms-core:^13.1
typo3/cms-core:^13.4
fi
composer update --no-progress --no-interaction;
composer show;
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"require": {
"php": ">=8.2 < 8.4",
"typo3/cms-core": "^13.3"
"typo3/cms-core": "^13.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57.0",
Expand All @@ -34,7 +34,7 @@
"symfony/console": "^7.0",
"symfony/translation": "^7.0",
"typo3/coding-standards": "^0.5.5",
"typo3/testing-framework": "dev-main"
"typo3/testing-framework": "^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 17bb7fa

Please sign in to comment.