Skip to content

Commit d7235cc

Browse files
committed
Updated deps.
1 parent e225fe4 commit d7235cc

File tree

7 files changed

+294
-291
lines changed

7 files changed

+294
-291
lines changed

.vortex/installer/tests/Fixtures/handler_process/_baseline/phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ parameters:
1111

1212
level: 7
1313

14-
phpVersion: 80328
14+
phpVersion: __VERSION__
1515

1616
paths:
1717
- web/modules/custom

.vortex/installer/tests/Fixtures/handler_process/hosting_acquia/phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@@ -14,10 +14,10 @@
2-
phpVersion: 80328
2+
phpVersion: __VERSION__
33

44
paths:
55
- - web/modules/custom

.vortex/installer/tests/Fixtures/handler_process/hosting_project_name___acquia/phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@@ -14,10 +14,10 @@
2-
phpVersion: 80328
2+
phpVersion: __VERSION__
33

44
paths:
55
- - web/modules/custom

.vortex/installer/tests/Functional/FunctionalTestCase.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase;
1212
use DrevOps\VortexInstaller\Utils\Config;
1313
use DrevOps\VortexInstaller\Utils\Env;
14+
use AlexSkrypnyk\File\Replacer\Replacement;
1415
use DrevOps\VortexInstaller\Utils\File;
1516
use DrevOps\VortexInstaller\Utils\Strings;
1617

@@ -117,6 +118,8 @@ protected function assertSutNotContains(string|array $needles): void {
117118
protected function replaceVersions(string $dir): void {
118119
File::getReplacer()
119120
->addVersionReplacements()
121+
// PHPStan phpVersion is an integer (e.g., 80330), not semver.
122+
->addReplacement(Replacement::create('phpstan_version', '/(phpVersion:\s)\d{5,6}/', '${1}' . Replacement::VERSION))
120123
->addExclusions(['127.0.0.1'])
121124
// Increase max replacements to handle large files with many version
122125
// strings (GHA workflows, lock files, etc). This value was empirically

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@
3737
"dealerdirect/phpcodesniffer-composer-installer": "^1.2.0",
3838
"drevops/behat-format-progress-fail": "^1.4",
3939
"drevops/behat-screenshot": "^2.2",
40-
"drevops/behat-steps": "^3.5.0",
40+
"drevops/behat-steps": "^3.5.2",
4141
"drevops/phpcs-standard": "^0.6.2",
4242
"drupal/coder": "^9@alpha",
43-
"drupal/drupal-extension": "^5.1",
43+
"drupal/drupal-extension": "^5.2.1",
4444
"ergebnis/composer-normalize": "^2.50.0",
4545
"lullabot/mink-selenium2-driver": "^1.7.4",
4646
"lullabot/php-webdriver": "^2.0.7",
47-
"mglaman/phpstan-drupal": "^2.0.10",
47+
"mglaman/phpstan-drupal": "^2.0.11",
4848
"mikey179/vfsstream": "^1.6.12",
4949
"palantirnet/drupal-rector": "^0.21.1",
5050
"phpcompatibility/php-compatibility": "^10.0@alpha",
5151
"phpmd/phpmd": "^2.15",
5252
"phpspec/prophecy-phpunit": "^2.5",
5353
"phpstan/extension-installer": "^1.4.3",
54-
"phpstan/phpstan": "^2.1.39",
54+
"phpstan/phpstan": "^2.1.40",
5555
"phpunit/phpunit": "^11.5.55",
5656
"pyrech/composer-changelogs": "^2.2",
57-
"rector/rector": "^2.3.7",
58-
"vincentlanglet/twig-cs-fixer": "^3.13"
57+
"rector/rector": "^2.3.8",
58+
"vincentlanglet/twig-cs-fixer": "^3.14"
5959
},
6060
"conflict": {
6161
"drupal/drupal": "*"
@@ -98,7 +98,7 @@
9898
"bump-after-update": true,
9999
"discard-changes": true,
100100
"platform": {
101-
"php": "8.3.28"
101+
"php": "8.3.30"
102102
},
103103
"sort-packages": true
104104
},

phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ parameters:
1111

1212
level: 7
1313

14-
phpVersion: 80328
14+
phpVersion: 80330
1515

1616
paths:
1717
- web/modules/custom

0 commit comments

Comments
 (0)