Skip to content

Commit 661b245

Browse files
committed
[TASK] Enable PHP 8.5
1 parent 2d1d6f7 commit 661b245

5 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches:
88
- main
99
- v3
10+
- php85
1011
pull_request:
1112
permissions:
1213
contents: read
@@ -35,6 +36,7 @@ jobs:
3536
- "8.2"
3637
- "8.3"
3738
- "8.4"
39+
- "8.5"
3840
code-quality:
3941
name: "Code quality checks"
4042
runs-on: ubuntu-22.04
@@ -72,6 +74,7 @@ jobs:
7274
- "8.2"
7375
- "8.3"
7476
- "8.4"
77+
- "8.5"
7578
unit-tests:
7679
name: "Unit tests"
7780
runs-on: ubuntu-22.04
@@ -121,6 +124,9 @@ jobs:
121124
- typo3-version: "^13.4"
122125
php-version: "8.4"
123126
composer-dependencies: highest
127+
- typo3-version: "^13.4"
128+
php-version: "8.5"
129+
composer-dependencies: highest
124130
functional-tests:
125131
name: "Functional tests"
126132
runs-on: ubuntu-22.04
@@ -130,7 +136,7 @@ jobs:
130136
# rest matrix jobs be executed anyway.
131137
fail-fast: false
132138
matrix:
133-
php: [ '8.2', '8.3', '8.4' ]
139+
php: [ '8.2', '8.3', '8.4', '8.5' ]
134140
composerInstall: [ 'composerInstallHighest' ]
135141
steps:
136142
- name: Checkout

Build/Scripts/runTests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,15 @@ Options:
233233
- 12.4: use TYPO3 v12
234234
- 13.4: use TYPO3 v13
235235
236-
-p <7.4|8.0|8.1|8.2|8.3|8.4>
236+
-p <7.4|8.0|8.1|8.2|8.3|8.4|8.5>
237237
Specifies the PHP minor version to be used
238238
- 7.4: use PHP 7.4 (default)
239239
- 8.0: use PHP 8.0
240240
- 8.1: use PHP 8.1
241241
- 8.2: use PHP 8.2
242242
- 8.3: use PHP 8.3
243243
- 8.4: use PHP 8.4
244+
- 8.5: use PHP 8.5
244245
245246
-e "<phpunit options>"
246247
Only with -s docsGenerate|functional|unit
@@ -363,7 +364,7 @@ while getopts "a:b:s:d:i:p:e:t:xy:nhu" OPT; do
363364
;;
364365
p)
365366
PHP_VERSION=${OPTARG}
366-
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3|8.4)$ ]]; then
367+
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3|8.4|8.5)$ ]]; then
367368
INVALID_OPTIONS+=("-p ${OPTARG}")
368369
fi
369370
;;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/ContentS
111111

112112
| Tiktok | TYPO3 | PHP | Support / Development |
113113
|--------|-------------|-----------|--------------------------------------|
114-
| 3.x | 13.x | 8.2 - 8.4 | features, bugfixes, security updates |
114+
| 3.x | 13.x | 8.2 - 8.5 | features, bugfixes, security updates |
115115
| 2.x | 12.x | 8.1 - 8.4 | bugfixes, security updates |
116116
| 1.x | 10.x - 11.x | 7.4 - 8.0 | bugfixes, security updates |
117117

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ayacoo/tiktok",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"type": "typo3-cms-extension",
55
"description": "Provides a Tiktok online media helper",
66
"homepage": "https://www.ayacoo.de",
@@ -14,7 +14,7 @@
1414
"GPL-2.0-or-later"
1515
],
1616
"require": {
17-
"php": ">=8.2 < 8.5",
17+
"php": ">=8.2 < 8.6",
1818
"typo3/cms-core": "^13.4"
1919
},
2020
"require-dev": {

ext_emconf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
'state' => 'stable',
99
'createDirs' => '',
1010
'clearCacheOnLoad' => 0,
11-
'version' => '3.0.1',
11+
'version' => '3.0.2',
1212
'constraints' => [
1313
'depends' => [
14-
'php' => '8.2.0-8.4.99',
14+
'php' => '8.2.0-8.5.99',
1515
'typo3' => '13.0.0-13.4.99',
1616
],
1717
'conflicts' => [

0 commit comments

Comments
 (0)