Skip to content

Commit 87f5d9f

Browse files
committed
bump
1 parent 89c85a1 commit 87f5d9f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@
88
"require": {
99
"php": ">=8.2",
1010
"composer/semver": "^3.4",
11-
"illuminate/container": "^12.25",
11+
"illuminate/container": "^12.37",
1212
"nette/utils": "^4.0",
13-
"symfony/console": "^6.4.24",
13+
"symfony/console": "^6.4.24|7.0.*",
1414
"symfony/finder": "^7.3",
1515
"symfony/process": "^7.3",
16-
"webmozart/assert": "^1.11"
16+
"webmozart/assert": "^1.12"
1717
},
1818
"require-dev": {
1919
"phpstan/extension-installer": "^1.4",
2020
"phpstan/phpstan": "^2.1",
21-
"phpunit/phpunit": "^11.5",
22-
"rector/rector": "^2.1",
21+
"phpunit/phpunit": "^11.5|^12.0",
22+
"rector/rector": "^2.2",
2323
"shipmonk/composer-dependency-analyser": "^1.8",
24-
"phpecs/phpecs": "^2.1",
24+
"phpecs/phpecs": "^2.2",
2525
"symplify/phpstan-extensions": "^12.0",
2626
"symplify/vendor-patches": "^11.5",
2727
"tomasvotruba/class-leak": "^2.0",
28-
"tracy/tracy": "^2.10"
28+
"tracy/tracy": "^2.11"
2929
},
3030
"autoload": {
3131
"psr-4": {

tests/ComposerProcessor/RaiseToInstalledComposerProcessor/RaiseToInstalledComposerProcessorTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function test(): void
3939
$this->assertSame('^9.0', $changedPackageVersion->getOldVersion());
4040

4141
// note: this might change in near future; improve to dynamic soon
42-
$this->assertStringStartsWith('^12.2', $changedPackageVersion->getNewVersion());
42+
$this->assertStringStartsWith('^12.3', $changedPackageVersion->getNewVersion());
4343
}
4444

4545
public function testSkipDev(): void
@@ -60,7 +60,7 @@ public static function provideSkipSuggestChangeFiles(): iterable
6060
<<<'JSON'
6161
{
6262
"require-dev": {
63-
"illuminate/container": "^12.26"
63+
"illuminate/container": "^12.37"
6464
},
6565
"suggest": {
6666
"illuminate/container": "to use container"
@@ -78,7 +78,7 @@ public static function provideSkipSuggestChangeFiles(): iterable
7878
"illuminate/container": "to use container"
7979
},
8080
"require-dev": {
81-
"illuminate/container": "^12.26"
81+
"illuminate/container": "^12.37"
8282
}
8383
}
8484

@@ -97,7 +97,7 @@ public function testSkipSuggestChange(string $file, string $changedFileContent):
9797

9898
$this->assertSame('illuminate/container', $changedPackageVersion->getPackageName());
9999
$this->assertSame('^9.0', $changedPackageVersion->getOldVersion());
100-
$this->assertStringStartsWith('^12.2', $changedPackageVersion->getNewVersion());
100+
$this->assertStringStartsWith('^12.3', $changedPackageVersion->getNewVersion());
101101

102102
$this->assertSame($changedFileContent, $changedPackageVersionsResult->getComposerJsonContents());
103103
}
@@ -112,13 +112,13 @@ public function testSkipConflictChange(): void
112112

113113
$this->assertSame('illuminate/container', $changedPackageVersion->getPackageName());
114114
$this->assertSame('^9.0', $changedPackageVersion->getOldVersion());
115-
$this->assertStringStartsWith('^12.2', $changedPackageVersion->getNewVersion());
115+
$this->assertStringStartsWith('^12.3', $changedPackageVersion->getNewVersion());
116116

117117
$this->assertSame(
118118
<<<'JSON'
119119
{
120120
"require-dev": {
121-
"illuminate/container": "^12.26"
121+
"illuminate/container": "^12.37"
122122
},
123123
"conflict": {
124124
"illuminate/container": "<9.0"
@@ -141,7 +141,7 @@ public function testSinglePiped(): void
141141

142142
$this->assertSame('illuminate/container', $changedPackageVersion->getPackageName());
143143
$this->assertSame('^12.14 | 13.0', $changedPackageVersion->getOldVersion());
144-
$this->assertStringStartsWith('^12.',$changedPackageVersion->getNewVersion());
144+
$this->assertStringStartsWith('^12.', $changedPackageVersion->getNewVersion());
145145
}
146146

147147
public function testDoublePiped(): void

0 commit comments

Comments
 (0)