Skip to content

chore(MOS-1820): Add PHP 8.3 support. #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
coverage: none
- uses: ramsey/composer-install@v2
- id: set-php-versions
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"phpunit/phpunit": "^9.5",
"roave/infection-static-analysis-plugin": "^1.19",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^4.23",
"vimeo/psalm": "^5.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phparkitect/phparkitect": "^0.2.21"
Expand Down
1 change: 1 addition & 0 deletions src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
private const PHP_VERSIONS = [
'8.1',
'8.2',
'8.3',
];

/** @var array<string, class-string<DevToolsCommand>>|null */
Expand All @@ -26,7 +27,7 @@

public function __construct()
{
$possibleRoots = [

Check warning on line 30 in src/Configuration.php

View workflow job for this annotation

GitHub Actions / 8.1 - infection

Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function __construct() { $possibleRoots = [ - __DIR__ . '/../../../../', // From vendor/myonlinestore/php-devtools/bin __DIR__ . '/../../', // From vendor/bin

Check warning on line 30 in src/Configuration.php

View workflow job for this annotation

GitHub Actions / 8.3 - infection

Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function __construct() { $possibleRoots = [ - __DIR__ . '/../../../../', // From vendor/myonlinestore/php-devtools/bin __DIR__ . '/../../', // From vendor/bin

Check warning on line 30 in src/Configuration.php

View workflow job for this annotation

GitHub Actions / 8.2 - infection

Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function __construct() { $possibleRoots = [ - __DIR__ . '/../../../../', // From vendor/myonlinestore/php-devtools/bin __DIR__ . '/../../', // From vendor/bin
__DIR__ . '/../../../../', // From vendor/myonlinestore/php-devtools/bin
__DIR__ . '/../../', // From vendor/bin
__DIR__ . '/../', // From bin
Expand Down
Loading