Skip to content

Commit

Permalink
Support for PHP8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
scheb committed Nov 4, 2023
1 parent e749550 commit c4226f8
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
symfony-version: '5.4.*'

# Test against Symfony 5.4
- php-version: '8.2'
- php-version: '8.3'
symfony-version: '5.4.*'

# Test against Symfony 6.*
- php-version: '8.2'
- php-version: '8.3'
symfony-version: '6.*'
steps:
- name: 'Checkout code'
Expand Down Expand Up @@ -90,11 +90,11 @@ jobs:
symfony-version: '5.4.*'

# Test against Symfony 5.4
- php-version: '8.2'
- php-version: '8.3'
symfony-version: '5.4.*'

# Test against Symfony 6.*
- php-version: '8.2'
- php-version: '8.3'
symfony-version: '6.*'

steps:
Expand Down
2 changes: 1 addition & 1 deletion app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "project",
"license": "MIT",
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.0.3",
"doctrine/orm": "^2.9",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"lcobucci/clock": "^2.0 || ^3.0",
"lcobucci/jwt": "^4.1 || ^5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/backup-code/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"scheb/2fa-bundle": "self.version"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/email/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"scheb/2fa-bundle": "self.version"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/google-authenticator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"scheb/2fa-bundle": "self.version",
"spomky-labs/otphp": "^10.0 || ^11.0",
"paragonie/constant_time_encoding": "^2.4"
Expand Down
2 changes: 1 addition & 1 deletion src/totp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"scheb/2fa-bundle": "self.version",
"spomky-labs/otphp": "^10.0 || ^11.0",
"paragonie/constant_time_encoding": "^2.4"
Expand Down
2 changes: 1 addition & 1 deletion src/trusted-device/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"scheb/2fa-bundle": "self.version",
"lcobucci/clock": "^2.0 || ^3.0",
"lcobucci/jwt": "^4.1 || ^5.0"
Expand Down

0 comments on commit c4226f8

Please sign in to comment.