Skip to content

Commit

Permalink
Merge pull request #2564 from shopware5/ci/try-php83
Browse files Browse the repository at this point in the history
ci: Add PHP 8.3 to the test matrix
  • Loading branch information
mitelg authored Nov 8, 2023
2 parents 97201e6 + 5e35624 commit 15919fd
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
php:
strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
mysql: ['pkgs.mysql80']
runs-on: ubuntu-latest
steps:
Expand Down
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 15919fd

Please sign in to comment.