Skip to content

Commit 0c18125

Browse files
extcoded-g-codappix
authored andcommitted
Add support for TYPO3 14.0 and PHP 8.5
Relates: #18
1 parent ff95fa4 commit 0c18125

2 files changed

Lines changed: 25 additions & 4 deletions

File tree

.forgejo/workflows/ci.yaml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: 'Install PHP'
1616
uses: 'actions/setup-php@v2'
1717
with:
18-
php-version: '8.4'
18+
php-version: '8.5'
1919

2020
- name: 'Validate composer.json'
2121
run: 'composer validate'
@@ -28,6 +28,7 @@ jobs:
2828
- '8.2'
2929
- '8.3'
3030
- '8.4'
31+
- '8.5'
3132
steps:
3233
- name: 'Checkout'
3334
uses: 'actions/checkout@v5'
@@ -50,7 +51,7 @@ jobs:
5051
- name: 'Install PHP'
5152
uses: 'actions/setup-php@v2'
5253
with:
53-
php-version: '8.4'
54+
php-version: '8.5'
5455

5556
- name: 'Install xmllint'
5657
run: 'sudo apt update && sudo apt install libxml2-utils'
@@ -112,6 +113,16 @@ jobs:
112113
typo3-version: '^13.0'
113114
- php-version: '8.4'
114115
typo3-version: '^13.0'
116+
- php-version: '8.5'
117+
typo3-version: '^13.0'
118+
- php-version: '8.2'
119+
typo3-version: '^14.0'
120+
- php-version: '8.3'
121+
typo3-version: '^14.0'
122+
- php-version: '8.4'
123+
typo3-version: '^14.0'
124+
- php-version: '8.5'
125+
typo3-version: '^14.0'
115126
steps:
116127
- uses: 'actions/checkout@v5'
117128

@@ -149,6 +160,16 @@ jobs:
149160
typo3-version: '^13.4'
150161
- php-version: '8.4'
151162
typo3-version: '^13.4'
163+
- php-version: '8.5'
164+
typo3-version: '^13.4'
165+
- php-version: '8.2'
166+
typo3-version: '^14.0'
167+
- php-version: '8.3'
168+
typo3-version: '^14.0'
169+
- php-version: '8.4'
170+
typo3-version: '^14.0'
171+
- php-version: '8.5'
172+
typo3-version: '^14.0'
152173
steps:
153174
- uses: 'actions/checkout@v5'
154175

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
"bin/typo3-php-datasets"
2828
],
2929
"require": {
30-
"php": "^8.2 || ^8.3 || ^8.4",
30+
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
3131
"composer-runtime-api": "^2.2",
3232
"doctrine/dbal": "^4.3.3",
3333
"symfony/console": "^7.2",
34-
"typo3/cms-core": "^13.4.19"
34+
"typo3/cms-core": "^13.4.19 || ^14.0"
3535
},
3636
"require-dev": {
3737
"friendsofphp/php-cs-fixer": "^3.4",

0 commit comments

Comments
 (0)