Skip to content

Commit

Permalink
fix docker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Oct 23, 2023
1 parent c1fcf56 commit fc0a05a
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions tests/DockerFileGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,20 +159,20 @@ public static function generatorRequirementsProvider(): iterable
[
'type' => 'php',
'condition' => '^7.1',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'extension',
'condition' => 'zlib',
'message' => 'The application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'The application requires the extension "zlib".',
'message' => 'This application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'This application requires the extension "zlib".',
],
[
'type' => 'extension',
'condition' => 'phar',
'message' => 'The application requires the extension "phar". Enable it or install a polyfill.',
'helpMessage' => 'The application requires the extension "phar".',
'message' => 'This application requires the extension "phar". Enable it or install a polyfill.',
'helpMessage' => 'This application requires the extension "phar".',
],
[
'type' => 'extension',
Expand Down Expand Up @@ -212,20 +212,20 @@ public static function generatorRequirementsProvider(): iterable
[
'type' => 'php',
'condition' => '^7.1',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'php',
'condition' => '~7.1.0',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'extension',
'condition' => 'zlib',
'message' => 'The application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'The application requires the extension "zlib".',
'message' => 'This application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'This application requires the extension "zlib".',
],
],
'box.phar',
Expand All @@ -247,14 +247,14 @@ public static function generatorRequirementsProvider(): iterable
[
'type' => 'php',
'condition' => '^7.1',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'php',
'condition' => '~7.1.0',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
],
'box.phar',
Expand All @@ -275,20 +275,20 @@ public static function generatorRequirementsProvider(): iterable
[
'type' => 'php',
'condition' => '^7.1',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'php',
'condition' => '~7.1.0',
'message' => 'The application requires the version "^7.1" or greater.',
'helpMessage' => 'The application requires the version "^7.1" or greater.',
'message' => 'This application requires the PHP version "^7.1" or greater.',
'helpMessage' => 'This application requires the PHP version "^7.1" or greater.',
],
[
'type' => 'extension',
'condition' => 'zlib',
'message' => 'The application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'The application requires the extension "zlib".',
'message' => 'This application requires the extension "zlib". Enable it or install a polyfill.',
'helpMessage' => 'This application requires the extension "zlib".',
],
[
'type' => 'extension',
Expand Down

0 comments on commit fc0a05a

Please sign in to comment.