Skip to content

Commit

Permalink
Merge pull request #110 from pixelant/php83
Browse files Browse the repository at this point in the history
[FEATURE] Support for PHP 8.3
  • Loading branch information
MattiasNilsson committed Dec 15, 2023
2 parents c43ddcc + cb1c62e commit c2ee393
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- 8.0
- 8.1
- 8.2
- 8.3
code-quality:
name: "Code quality checks"
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -146,6 +147,12 @@ jobs:
- typo3-version: ^11.5
php-version: 8.2
composer-dependencies: lowest
- typo3-version: ^11.5
php-version: 8.3
composer-dependencies: highest
- typo3-version: ^11.5
php-version: 8.3
composer-dependencies: lowest
- typo3-version: ^12.4
php-version: 8.1
composer-dependencies: highest
Expand All @@ -162,6 +169,14 @@ jobs:
php-version: 8.2
composer-dependencies: lowest
additional-requirements: "typo3/cms-reactions"
- typo3-version: ^12.4
php-version: 8.3
composer-dependencies: highest
additional-requirements: "typo3/cms-reactions"
- typo3-version: ^12.4
php-version: 8.3
composer-dependencies: lowest
additional-requirements: "typo3/cms-reactions"
functional-tests:
name: "Functional tests"
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -238,6 +253,12 @@ jobs:
- typo3-version: ^11.5
php-version: 8.2
composer-dependencies: lowest
- typo3-version: ^11.5
php-version: 8.3
composer-dependencies: highest
- typo3-version: ^11.5
php-version: 8.3
composer-dependencies: lowest
- typo3-version: ^12.4
php-version: 8.1
composer-dependencies: highest
Expand All @@ -254,3 +275,11 @@ jobs:
php-version: 8.2
composer-dependencies: lowest
additional-requirements: "typo3/cms-reactions"
- typo3-version: ^12.4
php-version: 8.3
composer-dependencies: highest
additional-requirements: "typo3/cms-reactions"
- typo3-version: ^12.4
php-version: 8.3
composer-dependencies: lowest
additional-requirements: "typo3/cms-reactions"
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"ext-pdo": "*",
"symfony/polyfill-php81": "^1.28",
Expand Down Expand Up @@ -45,9 +45,6 @@
"replace": {
"typo3-ter/interest": "self.version"
},
"conflict": {
"phpstan/phpstan": "1.7.12 || 1.7.13 || 1.7.14"
},
"suggest": {
"typo3/cms-reactions": "To use TYPO3 reactions as entry point and for authentication."
},
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$EM_CONF['interest'] = [
'title' => 'Integration REST API',
'description' => 'REST and CLI API for adding, updating, and deleting records in TYPO3. Tracks relations so records can be inserted in any order. Uses remote ID mapping so you don\'t have to keep track of what UID a record has gotten after import. Data is inserted using backend APIs as if a real human did it, so you can can inspect the record history and undo actions.',
'version' => '2.0.0',
'version' => '2.1.0',
'state' => 'stable',
'category' => 'plugin',
'constraints' => [
Expand Down

0 comments on commit c2ee393

Please sign in to comment.