Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Oct 22, 2023
1 parent 6972442 commit b2c33cd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/RequirementChecker/RequirementsDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,20 +134,23 @@ public static function jsonAndLockContentsProvider(): iterable
array (
'type' => 'php',
'condition' => '^7.4',
'source' => 'acme/foo',
'message' => 'The package "acme/foo" requires a version matching "^7.4".',
'helpMessage' => 'The package "acme/foo" requires a version matching "^7.4".',
),
1 =>
array (
'type' => 'extension',
'condition' => 'zlib',
'source' => NULL,
'message' => 'The application requires the extension "zlib".',
'helpMessage' => 'The application requires the extension "zlib". You either need to enable it or request the application to be shipped with a polyfill for this extension.',
),
2 =>
array (
'type' => 'extension',
'condition' => 'json',
'source' => 'acme/foo',
'message' => 'The package "acme/foo" requires the extension "json".',
'helpMessage' => 'The package "acme/foo" requires the extension "json". You either need to enable it or request the application to be shipped with a polyfill for this extension.',
),
Expand Down

0 comments on commit b2c33cd

Please sign in to comment.