Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[TASK] Enable PHP 8.4 #14

Merged
merged 2 commits into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
php-version:
- "8.2"
- "8.3"
- "8.4"
code-quality:
name: "Code quality checks"
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -70,6 +71,7 @@ jobs:
php-version:
- "8.2"
- "8.3"
- "8.4"
unit-tests:
name: "Unit tests"
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -116,6 +118,9 @@ jobs:
- typo3-version: "^13.4"
php-version: "8.3"
composer-dependencies: highest
- typo3-version: "^13.4"
php-version: "8.4"
composer-dependencies: highest
functional-tests:
name: "Functional tests"
runs-on: ubuntu-22.04
Expand All @@ -125,7 +130,7 @@ jobs:
# rest matrix jobs be executed anyway.
fail-fast: false
matrix:
php: [ '8.2', '8.3' ]
php: [ '8.2', '8.3', '8.4' ]
composerInstall: [ 'composerInstallHighest' ]
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/ContentS

| Tiktok | TYPO3 | PHP | Support / Development |
|--------|-------------|-----------|--------------------------------------|
| 3.x | 13.x | 8.2 - 8.3 | features, bugfixes, security updates |
| 2.x | 12.x | 8.1 - 8.3 | bugfixes, security updates |
| 3.x | 13.x | 8.2 - 8.4 | features, bugfixes, security updates |
| 2.x | 12.x | 8.1 - 8.4 | bugfixes, security updates |
| 1.x | 10.x - 11.x | 7.4 - 8.0 | bugfixes, security updates |

### 4.2 Release Management
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ayacoo/tiktok",
"version": "3.0.0",
"version": "3.0.1",
"type": "typo3-cms-extension",
"description": "Provides a Tiktok online media helper",
"homepage": "https://www.ayacoo.de",
Expand All @@ -14,7 +14,7 @@
"GPL-2.0-or-later"
],
"require": {
"php": ">=8.2 < 8.4",
"php": ">=8.2 < 8.5",
"typo3/cms-core": "^13.4"
},
"require-dev": {
Expand Down Expand Up @@ -50,8 +50,8 @@
}
},
"scripts": {
"ci:php:cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:cs": "PHP_CS_FIXER_IGNORE_ENV=1 php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:csfix": "PHP_CS_FIXER_IGNORE_ENV=1 php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:lint": "find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
"ci:php:sniff": "phpcs Classes Configuration Tests",
"ci:php:stan": "phpstan --no-progress",
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
'state' => 'stable',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '3.0.0',
'version' => '3.0.1',
'constraints' => [
'depends' => [
'php' => '8.2.0-8.3.99',
'php' => '8.2.0-8.4.99',
'typo3' => '13.0.0-13.4.99',
],
'conflicts' => [
Expand Down