Skip to content

Commit 9ef4cd1

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fixup! fixup! try entropy
1 parent bd5151c commit 9ef4cd1

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"require": {
3-
"illuminate/container": "^12.14 || 13.0"
3+
"symfony/console": "^5.4 || 6.4"
44
}
5-
}
5+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"suggest": {
3-
"illuminate/container": "to use container"
3+
"symfony/console": "to use container"
44
},
55
"require-dev": {
6-
"illuminate/container": "^9.0"
6+
"symfony/console": "^5.4"
77
}
88
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"require-dev": {
3-
"illuminate/container": "^9.0"
3+
"symfony/console": "^5.4"
44
},
55
"suggest": {
6-
"illuminate/container": "to use container"
6+
"symfony/console": "to use container"
77
}
88
}

tests/ComposerProcessor/RaiseToInstalledComposerProcessor/RaiseToInstalledComposerProcessorTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static function provideSkipSuggestChangeFiles(): iterable
6060
<<<'JSON'
6161
{
6262
"require-dev": {
63-
"symfony/console": "^12.42"
63+
"symfony/console": "^6.4"
6464
},
6565
"suggest": {
6666
"symfony/console": "to use container"
@@ -78,7 +78,7 @@ public static function provideSkipSuggestChangeFiles(): iterable
7878
"symfony/console": "to use container"
7979
},
8080
"require-dev": {
81-
"symfony/console": "^12.42"
81+
"symfony/console": "^6.4"
8282
}
8383
}
8484

@@ -96,8 +96,8 @@ public function testSkipSuggestChange(string $file, string $changedFileContent):
9696
$changedPackageVersion = $changedPackageVersionsResult->getChangedPackageVersions()[0];
9797

9898
$this->assertSame('symfony/console', $changedPackageVersion->getPackageName());
99-
$this->assertSame('^4.4', $changedPackageVersion->getOldVersion());
100-
$this->assertStringStartsWith('^12.4', $changedPackageVersion->getNewVersion());
99+
$this->assertSame('^5.4', $changedPackageVersion->getOldVersion());
100+
$this->assertSame('^6.4', $changedPackageVersion->getNewVersion());
101101

102102
$this->assertSame($changedFileContent, $changedPackageVersionsResult->getComposerJsonContents());
103103
}
@@ -159,7 +159,7 @@ public function testDoublePiped(): void
159159
$this->assertInstanceOf(ChangedPackageVersion::class, $changedPackageVersion);
160160

161161
$this->assertSame('symfony/console', $changedPackageVersion->getPackageName());
162-
$this->assertSame('^12.14 | 13.0', $changedPackageVersion->getOldVersion());
163-
$this->assertStringStartsWith('^12.', $changedPackageVersion->getNewVersion());
162+
$this->assertSame('^5.4 | 6.4', $changedPackageVersion->getOldVersion());
163+
$this->assertSame('^6.4', $changedPackageVersion->getNewVersion());
164164
}
165165
}

0 commit comments

Comments
 (0)