-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #617 from extcode/611-add-ci-tests-for-php-84-back…
…port [BUGFIX] Add tests and fixes for PHP 8.4
- Loading branch information
Showing
23 changed files
with
130 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
Documentation/Changelog/9.3/Breaking-611-ChangePhpDependency.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.. include:: ../../Includes.rst.txt | ||
|
||
====================================== | ||
Breaking: #611 - Change PHP Dependency | ||
====================================== | ||
|
||
See `Issue 611 <https://github.com/extcode/cart/issues/611>`__ | ||
|
||
Description | ||
=========== | ||
|
||
Tests with newer versions of phpstan under newer php versions showed that the | ||
constructor method `\Extcode\Cart\Domain\Model\Cart\BeVariant::__construct()` uses | ||
required method parameters after optional parameters. This is deprecated since. | ||
PHP 8.0. (see https://php.watch/versions/8.0/deprecate-required-param-after-optional) | ||
|
||
As this may lead to an error in a later PHP version, compatibility is restricted | ||
to PHP 8.1-8.4. | ||
|
||
Affected Installations | ||
====================== | ||
|
||
All installations. | ||
|
||
Migration | ||
========= | ||
|
||
This restriction currently has no effect. No migration is necessary. | ||
|
||
.. index:: API |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.. include:: ../../Includes.rst.txt | ||
|
||
9.3 Changes | ||
=========== | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
:depth: 1 | ||
|
||
Breaking | ||
-------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:titlesonly: | ||
:glob: | ||
|
||
Breaking-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ ChangeLog | |
:maxdepth: 5 | ||
:titlesonly: | ||
|
||
9.3/Index | ||
9.1/Index | ||
9.0/Index | ||
8.5/Index | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,17 @@ | |
'title' => 'Cart', | ||
'description' => 'Shopping Cart(s) for TYPO3', | ||
'category' => 'plugin', | ||
'version' => '9.2.0', | ||
'version' => '9.3.0', | ||
'state' => 'stable', | ||
'author' => 'Daniel Gohlke', | ||
'author_email' => '[email protected]', | ||
'author_company' => 'extco.de UG (haftungsbeschränkt)', | ||
'constraints' => [ | ||
'depends' => [ | ||
'php' => '8.1.0-8.4.99', | ||
'typo3' => '12.4.0-12.4.99', | ||
'extbase' => '12.4.0-12.4.99', | ||
'fluid' => '12.4.0-12.4.99', | ||
], | ||
'conflicts' => [], | ||
'suggests' => [], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters