Skip to content

Commit

Permalink
feat: Allow installation on PHP 8.3 in composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mitelg committed Nov 8, 2023
1 parent eff5a19 commit 5e35624
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 6 deletions.
5 changes: 5 additions & 0 deletions UPGRADE-5.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ This changelog references changes done in Shopware 5.7 patch versions.

[View all changes from v5.7.19...v5.7.20](https://github.com/shopware5/shopware/compare/v5.7.19...v5.7.20)

### Additions

* Added compatibility with PHP 8.3
* Added new polyfill `symfony/polyfill-php83` to be able to use PHP 8.3 features

### Changes

* Changed behaviour of the translation transfer while setting a product variant as the main variant
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"issues": "https://issues.shopware.com"
},
"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-ctype": "*",
"ext-curl": "*",
"ext-date": "*",
Expand Down Expand Up @@ -84,6 +84,7 @@
"symfony/polyfill-php80": "^1.23",
"symfony/polyfill-php81": "^1.23",
"symfony/polyfill-php82": "^1.26",
"symfony/polyfill-php83": "^1.28",
"symfony/process": "~4.4.34",
"symfony/serializer": "~5.4.0",
"symfony/validator": "~4.4.34",
Expand Down
84 changes: 82 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recovery/common/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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",
"knplabs/gaufrette": "0.11.1",
"pimple/pimple": "3.5.0",
"slim/slim": "2.6.3",
Expand Down
4 changes: 2 additions & 2 deletions recovery/common/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e35624

Please sign in to comment.