Skip to content

Commit dc165c6

Browse files
authored
Merge pull request #13 from MyOnlineStore/MOS-1820-php-83
chore(MOS-1820): Add PHP 8.3 support.
2 parents bbc4c2f + 7f47d93 commit dc165c6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
- uses: shivammathur/setup-php@v2
1111
with:
12-
php-version: 8.2
12+
php-version: 8.3
1313
coverage: none
1414
- uses: ramsey/composer-install@v2
1515
- id: set-php-versions

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"phpunit/phpunit": "^9.5",
3232
"roave/infection-static-analysis-plugin": "^1.19",
3333
"roave/security-advisories": "dev-latest",
34-
"vimeo/psalm": "^4.23",
34+
"vimeo/psalm": "^5.0",
3535
"phpstan/phpstan": "^1.7",
3636
"phpstan/phpstan-phpunit": "^1.1",
3737
"phparkitect/phparkitect": "^0.2.21"

src/Configuration.php

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ final class Configuration
1212
private const PHP_VERSIONS = [
1313
'8.1',
1414
'8.2',
15+
'8.3',
1516
];
1617

1718
/** @var array<string, class-string<DevToolsCommand>>|null */

0 commit comments

Comments
 (0)