Skip to content

Commit bbc4c2f

Browse files
Fred-Jan van der Eijkenbartvanraaij
authored andcommitted
chore(MOS-855): Add PHP 8.2 support
1 parent a0f4d42 commit bbc4c2f

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
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.1
12+
php-version: 8.2
1313
coverage: none
1414
- uses: ramsey/composer-install@v2
1515
- id: set-php-versions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"symfony/process": "^5.4 || ^6.0"
2727
},
2828
"require-dev": {
29-
"myonlinestore/coding-standard": "dev-doctrine-cs-10",
29+
"myonlinestore/coding-standard": "^4.0",
3030
"doctrine/coding-standard": "10.0.x-dev",
3131
"phpunit/phpunit": "^9.5",
3232
"roave/infection-static-analysis-plugin": "^1.19",

src/Configuration.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
final class Configuration
1111
{
1212
private const PHP_VERSIONS = [
13-
'8.0',
1413
'8.1',
14+
'8.2',
1515
];
1616

1717
/** @var array<string, class-string<DevToolsCommand>>|null */
18-
private array|null $enabledTools = null;
18+
private array | null $enabledTools = null;
1919

2020
/** @var list<string>|null */
21-
private array|null $phpVersions = null;
21+
private array | null $phpVersions = null;
2222

2323
private string $rootDir;
24-
private string|null $workingDir = null;
25-
private string|null $threads = null;
24+
private string | null $workingDir = null;
25+
private string | null $threads = null;
2626

2727
public function __construct()
2828
{

0 commit comments

Comments
 (0)