Skip to content

Commit

Permalink
Upgrade PHP version to 8.3 and set JWSSerializer override flag
Browse files Browse the repository at this point in the history
This commit updates the PHP version in our GitHub workflows from 8.2 to 8.3. Now, all our build and test jobs will use the newer version. An override flag was also added to the getSupportedTypes method in the JWSSerializer, making our intention clearer when using this method. These updates will ensure that our code continues to be compatible with ongoing upgrades.
  • Loading branch information
Spomky committed Jul 9, 2024
1 parent 96c20b2 commit da529a3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
26 changes: 13 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"spomky-labs/pki-framework": "^1.2.1",
"symfony/config": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/http-client-contracts": "^3.4",
"symfony/http-kernel": "^6.4|^7.0"
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"ext-curl": "*",
Expand Down Expand Up @@ -86,14 +86,14 @@
"staabm/phpstan-dba": "^0.2.79",
"staabm/phpstan-todo-by": "^0.1.25",
"struggle-for-php/sfp-phpstan-psr-log": "^0.20|^0.21",
"symfony/browser-kit": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/clock": "^6.4|^7.0",
"symfony/finder": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"symfony/browser-kit": "^7.0",
"symfony/http-client": "^7.0",
"symfony/clock": "^7.0",
"symfony/finder": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/serializer": "^7.0",
"symfony/var-dumper": "^7.0",
"symfony/yaml": "^7.0",
"symplify/easy-coding-standard": "^12.0"
},
"replace": {
Expand Down
10 changes: 5 additions & 5 deletions src/Bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
"require": {
"php": ">=8.2",
"psr/event-dispatcher": "^1.0",
"symfony/config": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/http-client-contracts": "^3.4",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/http-kernel": "^7.0",
"web-token/jwt-library": "^4.0"
},
"suggest": {
Expand Down

0 comments on commit da529a3

Please sign in to comment.