We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228ebb5 commit 0d14a53Copy full SHA for 0d14a53
1 file changed
tests/AutoReview/ComposerJsonTest.php
@@ -67,6 +67,15 @@ public function testFrameworkRequireDevIsTheSameWithDevRequireDev(): void
67
}
68
69
70
+ public function testFrameworkSuggestIsTheSameWithDevSuggest(): void
71
+ {
72
+ $this->assertSame(
73
+ $this->devComposer['suggest'],
74
+ $this->frameworkComposer['suggest'],
75
+ 'The framework\'s "suggest" section is not updated with the main composer.json.'
76
+ );
77
+ }
78
+
79
private function getComposerJson(string $path): array
80
{
81
try {
0 commit comments