Skip to content

Commit 079a193

Browse files
committed
Upgrade ECS to 12.5.22 (has no sub-dependencies) and PHPStan because why not
1 parent 9823df4 commit 079a193

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
# dev packages for next major version
5353
- minimum-stability: 'dev'
5454
php-version: '8.4'
55-
symfony-version: '8.0'
55+
symfony-version: '8.0.x-dev'
5656
# lowest deps
5757
- php-version: '8.1'
5858
dependency-version: 'lowest'

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"symfony/process": "^6.4|^7.0|^8.0"
2424
},
2525
"require-dev": {
26-
"phpstan/phpstan": "^1.11",
27-
"symplify/easy-coding-standard": "^12.1.2",
26+
"phpstan/phpstan": "^2.1.21",
27+
"symplify/easy-coding-standard": "12.5.22",
2828
"symfony/framework-bundle": "^6.4|^7.0|^8.0"
2929
}
3030
}

src/BiomeJsBinary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private static function isMusl(): bool
4242
{
4343
static $isMusl = null;
4444

45-
if (null !== $isMusl) {
45+
if (is_bool($isMusl)) {
4646
return $isMusl;
4747
}
4848

src/KocalBiomeJsBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
final class KocalBiomeJsBundle extends Bundle
1212
{
13-
protected function createContainerExtension(): ?ExtensionInterface
13+
protected function createContainerExtension(): ExtensionInterface
1414
{
1515
return new BiomeJsExtension();
1616
}

0 commit comments

Comments
 (0)