diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index acfd310..de0f00a 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -32,18 +32,18 @@ jobs:
with:
php-version: '8.4'
coverage: ${{ matrix.coverage }}
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependency-versions }}
composer-options: --no-audit --optimize-autoloader
- # TODO: `--fail-on-incomplete` doesn't fail
- # See: https://github.com/pestphp/pest/issues/1328
- - run: composer pest:unit -- --coverage-clover coverage-unit.xml --ci --bail --stop-on-incomplete --fail-on-incomplete
- - run: composer pest:feature -- --coverage-clover coverage-feature.xml --ci --bail --stop-on-incomplete --fail-on-incomplete
+ - run: composer pest:unit -- ${COVERAGE} --ci --bail --stop-on-incomplete --fail-on-all-issues
+ env:
+ COVERAGE: ${{ matrix.coverage == 'xdebug' && '--coverage-clover coverage-unit.xml' || '' }}
+ - run: composer pest:feature -- ${COVERAGE} --ci --bail --stop-on-incomplete --fail-on-all-issues
+ env:
+ COVERAGE: ${{ matrix.coverage == 'xdebug' && '--coverage-clover coverage-feature.xml' || '' }}
- uses: actions/upload-artifact@v4
if: matrix.coverage == 'xdebug'
@@ -66,17 +66,13 @@ jobs:
with:
php-version: '8.4'
coverage: none
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependency-versions }}
composer-options: --no-audit --optimize-autoloader
- # TODO: `--fail-on-incomplete` doesn't fail
- # See: https://github.com/pestphp/pest/issues/1328
- - run: composer pest:e2e -- --ci --bail --stop-on-incomplete --fail-on-incomplete
+ - run: composer pest:e2e -- --ci --bail --stop-on-incomplete --fail-on-all-issues
codecov:
needs: pest
diff --git a/composer.json b/composer.json
index 41d2022..ef989d8 100644
--- a/composer.json
+++ b/composer.json
@@ -28,14 +28,13 @@
"require": {
"php": "^8.4",
"composer-runtime-api": "^2.2",
- "composer/semver": "^3.4.3",
- "guzzlehttp/guzzle": "^7.9.2",
- "symfony/console": "^7.2.1"
+ "composer/semver": "^3.4.4",
+ "guzzlehttp/guzzle": "^7.10",
+ "symfony/console": "^7.3.4"
},
"require-dev": {
"mockery/mockery": "^1.6.12",
- "pestphp/pest": "^3.7.1",
- "roave/security-advisories": "dev-latest"
+ "pestphp/pest": "^4.1.2"
},
"autoload": {
"psr-4": {
diff --git a/phpunit.xml b/phpunit.xml
index 4a4415e..de3c8ba 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -1,6 +1,6 @@
@@ -11,15 +11,12 @@
- ./app
./src
-
-
-
+
diff --git a/src/Console/Application.php b/src/Console/Application.php
index 941f7e5..d0f53d9 100644
--- a/src/Console/Application.php
+++ b/src/Console/Application.php
@@ -13,19 +13,15 @@ class Application
public static function make(): ConsoleApplication
{
- $application = new ConsoleApplication(
+ $app = new ConsoleApplication(
self::NAME,
InstalledVersions::getPrettyVersion('typisttech/php-matrix') ?? 'unknown',
);
- $command = new Command;
+ $app->addCommands([
+ new ConstraintCommand,
+ ]);
- $application->add($command);
- $application->setDefaultCommand(
- $command->getName(),
- true
- );
-
- return $application;
+ return $app;
}
}
diff --git a/src/Console/Command.php b/src/Console/Command.php
deleted file mode 100644
index 07c5543..0000000
--- a/src/Console/Command.php
+++ /dev/null
@@ -1,136 +0,0 @@
-php-matrix on GitHub:
- https://github.com/typisttech/php-matrix>
-
- - Sponsor Tang Rufus via GitHub:
- https://github.com/sponsors/tangrufus>
-HELP;
-
- private const string CONSTRAINT_ARGUMENT_NAME = 'constraint';
-
- private const string CONSTRAINT_ARGUMENT_DESCRIPTION = 'The version constraint.';
-
- private const string SOURCE_OPTION_NAME = 'source';
-
- private const string MODE_OPTION_NAME = 'mode';
-
- public function __construct(
- private readonly MatrixFactory $matrixFactory = new MatrixFactory,
- ) {
- parent::__construct();
- }
-
- protected function configure(): void
- {
- $this
- ->setHelp(self::HELP)
- ->addArgument(
- self::CONSTRAINT_ARGUMENT_NAME,
- InputArgument::REQUIRED,
- self::CONSTRAINT_ARGUMENT_DESCRIPTION
- )
- ->addOption(
- self::SOURCE_OPTION_NAME,
- null,
- InputOption::VALUE_REQUIRED,
- Source::description(),
- Source::Auto->value,
- )->addOption(
- self::MODE_OPTION_NAME,
- null,
- InputOption::VALUE_REQUIRED,
- Mode::description(),
- Mode::MinorOnly->value,
- );
- }
-
- protected function initialize(InputInterface $input, OutputInterface $output): void
- {
- parent::initialize($input, $output);
-
- $sourceOpt = $input->getOption(self::SOURCE_OPTION_NAME);
- $source = Source::tryFrom($sourceOpt);
- if ($source === null) {
- $message = sprintf(
- 'Error! Invalid %1$s \'%2$s\'. Available %1$ss: [%3$s]',
- self::SOURCE_OPTION_NAME,
- $sourceOpt,
- implode(', ', array_column(Source::cases(), 'value')),
- );
-
- throw new InvalidArgumentException($message);
- }
-
- $modeOpt = $input->getOption(self::MODE_OPTION_NAME);
- $mode = Mode::tryFrom($modeOpt);
- if ($mode === null) {
- $message = sprintf(
- 'Error! Invalid %1$s \'%2$s\'. Available %1$ss: [%3$s]',
- self::MODE_OPTION_NAME,
- $modeOpt,
- implode(', ', array_column(Mode::cases(), 'value')),
- );
-
- throw new InvalidArgumentException($message);
- }
- }
-
- protected function execute(InputInterface $input, OutputInterface $output): int
- {
- $source = Source::from(
- $input->getOption(self::SOURCE_OPTION_NAME)
- );
- $mode = Mode::from(
- $input->getOption(self::MODE_OPTION_NAME)
- );
- $matrix = $this->matrixFactory->make($source, $mode);
-
- $constraint = $input->getArgument(self::CONSTRAINT_ARGUMENT_NAME);
- $versions = $matrix->satisfiedBy($constraint);
- if (empty($versions)) {
- throw new RuntimeException(
- sprintf("Error! No PHP versions could satisfy the constraint '%s'.", $constraint)
- );
- }
-
- $result = json_encode(
- (object) [
- self::CONSTRAINT_ARGUMENT_NAME => $constraint,
- 'versions' => Versions::sort(...$versions),
- 'lowest' => Versions::lowest(...$versions),
- 'highest' => Versions::highest(...$versions),
- ],
- JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT
- );
-
- $output->writeln($result);
-
- return BaseCommand::SUCCESS;
- }
-}
diff --git a/src/Console/ConstraintCommand.php b/src/Console/ConstraintCommand.php
new file mode 100644
index 0000000..3fd24e3
--- /dev/null
+++ b/src/Console/ConstraintCommand.php
@@ -0,0 +1,77 @@
+value,
+ #[ModeOption]
+ string $mode = Mode::MinorOnly->value,
+ ): int {
+ $matrix = $this->matrixFactory->make(
+ Source::fromValue($source),
+ Mode::fromValue($mode),
+ );
+
+ try {
+ $versions = $matrix->satisfiedBy($constraint);
+ } catch (UnexpectedValueException $e) {
+ $this->printError(
+ $io,
+ $e->getMessage()
+ );
+
+ return Command::FAILURE;
+ }
+
+ if (empty($versions)) {
+ $this->printError(
+ $io,
+ sprintf('No PHP versions could satisfy the constraint "%s".', $constraint)
+ );
+
+ return Command::FAILURE;
+ }
+
+ $result = json_encode(
+ (object)[
+ 'constraint' => $constraint,
+ 'versions' => Versions::sort(...$versions),
+ 'lowest' => Versions::lowest(...$versions),
+ 'highest' => Versions::highest(...$versions),
+ ],
+ JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT
+ );
+
+ $io->writeln($result);
+
+ return Command::SUCCESS;
+ }
+}
diff --git a/src/Console/FromNameTrait.php b/src/Console/FromNameTrait.php
new file mode 100644
index 0000000..5704808
--- /dev/null
+++ b/src/Console/FromNameTrait.php
@@ -0,0 +1,27 @@
+getErrorStyle()
+ ->error($message);
+ }
+}
diff --git a/src/Console/Source.php b/src/Console/Source.php
index db8f932..fd79ab4 100644
--- a/src/Console/Source.php
+++ b/src/Console/Source.php
@@ -4,6 +4,8 @@
namespace TypistTech\PhpMatrix\Console;
+use Symfony\Component\Console\Attribute\Option;
+use Symfony\Component\Console\Exception\InvalidArgumentException;
use TypistTech\PhpMatrix\Releases\OfflineReleases;
use TypistTech\PhpMatrix\Releases\PhpNetReleases;
use TypistTech\PhpMatrix\ReleasesInterface;
@@ -14,6 +16,10 @@ enum Source: string
case PhpNet = 'php.net';
case Offline = 'offline';
+ use FromNameTrait;
+
+ public const string NAME = 'source';
+
public function releases(Mode $mode): ReleasesInterface
{
if ($this === self::Auto) {
@@ -31,10 +37,10 @@ public function releases(Mode $mode): ReleasesInterface
public static function description(): string
{
- $desc = 'Available sources:'.PHP_EOL;
+ $desc = 'Available sources:' . PHP_EOL;
foreach (self::cases() as $source) {
- $desc .= "- {$source->value}: {$source->explanation()}".PHP_EOL;
+ $desc .= "- {$source->value}: {$source->explanation()}" . PHP_EOL;
}
$desc .= PHP_EOL;
diff --git a/src/Console/SourceOption.php b/src/Console/SourceOption.php
new file mode 100644
index 0000000..99f1c9e
--- /dev/null
+++ b/src/Console/SourceOption.php
@@ -0,0 +1,21 @@
+
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______minor_only_______4____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______minor_only_______4____auto____minor_only__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______minor_only_______4____auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______not_a_mode_______4____auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______not_a_mode_______4____auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto_______not_a_mode_______4____auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto______null______4____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto______null______4____auto___null_.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______auto______null______4____auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______full_______4____not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______full_______4____not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______full_______4____not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______minor_only_______4____not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______minor_only_______4____not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______minor_only_______4____not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______not_a_mode_______4____not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______not_a_mode_______4____not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source_______not_a_mode_______4____not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source______null______4____not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source______null______4____not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______not_a_source______null______4____not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______full_______4____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______full_______4____offline____full__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______full_______4____offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______minor_only_______4____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______minor_only_______4____offline____minor_only__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______minor_only_______4____offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______not_a_mode_______4____offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______not_a_mode_______4____offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline_______not_a_mode_______4____offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline______null______4____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline______null______4____offline___null_.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______offline______null______4____offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______full_______4____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______full_______4____php_net____full__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______full_______4____php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______minor_only_______4____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______minor_only_______4____php_net____minor_only__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______minor_only_______4____php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______not_a_mode_______4____php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______not_a_mode_______4____php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net_______not_a_mode_______4____php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net______null______4____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net______null______4____php_net___null_.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4_______php_net______null______4____php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______full_______4___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______full_______4___null___full__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______full_______4___null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______minor_only_______4___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______minor_only_______4___null___minor_only__.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______minor_only_______4___null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______not_a_mode_______4___null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______not_a_mode_______4___null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null______not_a_mode_______4___null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null_____null______4___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null_____null______4___null__null_.snap"
deleted file mode 100644
index 9216883..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____4______null_____null______4___null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^4'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______full_______7_999____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______full_______7_999____auto____full__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______full_______7_999____auto____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______minor_only_______7_999____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______minor_only_______7_999____auto____minor_only__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______minor_only_______7_999____auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______not_a_mode_______7_999____auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______not_a_mode_______7_999____auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto_______not_a_mode_______7_999____auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto______null______7_999____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto______null______7_999____auto___null_.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______auto______null______7_999____auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______full_______7_999____not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______full_______7_999____not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______full_______7_999____not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______minor_only_______7_999____not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______minor_only_______7_999____not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______minor_only_______7_999____not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______not_a_mode_______7_999____not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______not_a_mode_______7_999____not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source_______not_a_mode_______7_999____not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source______null______7_999____not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source______null______7_999____not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______not_a_source______null______7_999____not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______full_______7_999____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______full_______7_999____offline____full__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______full_______7_999____offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______minor_only_______7_999____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______minor_only_______7_999____offline____minor_only__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______minor_only_______7_999____offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______not_a_mode_______7_999____offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______not_a_mode_______7_999____offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline_______not_a_mode_______7_999____offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline______null______7_999____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline______null______7_999____offline___null_.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______offline______null______7_999____offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______full_______7_999____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______full_______7_999____php_net____full__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______full_______7_999____php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______minor_only_______7_999____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______minor_only_______7_999____php_net____minor_only__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______minor_only_______7_999____php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______not_a_mode_______7_999____php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______not_a_mode_______7_999____php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net_______not_a_mode_______7_999____php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net______null______7_999____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net______null______7_999____php_net___null_.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999_______php_net______null______7_999____php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______full_______7_999___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______full_______7_999___null___full__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______full_______7_999___null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______minor_only_______7_999___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______minor_only_______7_999___null___minor_only__.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______minor_only_______7_999___null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______not_a_mode_______7_999___null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______not_a_mode_______7_999___null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null______not_a_mode_______7_999___null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null_____null______7_999___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null_____null______7_999___null__null_.snap"
deleted file mode 100644
index eed722d..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set_____7_999______null_____null______7_999___null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '^7.999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______full________999____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______full________999____auto____full__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______full________999____auto____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______minor_only________999____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______minor_only________999____auto____minor_only__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______minor_only________999____auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______not_a_mode________999____auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______not_a_mode________999____auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto_______not_a_mode________999____auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto______null_______999____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto______null_______999____auto___null_.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______auto______null_______999____auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______full________999____not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______full________999____not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______full________999____not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______minor_only________999____not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______minor_only________999____not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______minor_only________999____not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______not_a_mode________999____not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______not_a_mode________999____not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source_______not_a_mode________999____not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source______null_______999____not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source______null_______999____not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______not_a_source______null_______999____not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______full________999____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______full________999____offline____full__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______full________999____offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______minor_only________999____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______minor_only________999____offline____minor_only__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______minor_only________999____offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______not_a_mode________999____offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______not_a_mode________999____offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline_______not_a_mode________999____offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline______null_______999____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline______null_______999____offline___null_.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______offline______null_______999____offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______full________999____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______full________999____php_net____full__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______full________999____php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______minor_only________999____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______minor_only________999____php_net____minor_only__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______minor_only________999____php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______not_a_mode________999____php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______not_a_mode________999____php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net_______not_a_mode________999____php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net______null_______999____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net______null_______999____php_net___null_.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999_______php_net______null_______999____php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______full________999___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______full________999___null___full__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______full________999___null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______minor_only________999___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______minor_only________999___null___minor_only__.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______minor_only________999___null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______not_a_mode________999___null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______not_a_mode________999___null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null______not_a_mode________999___null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null_____null_______999___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null_____null_______999___null__null_.snap"
deleted file mode 100644
index 88b44f9..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set______999______null_____null_______999___null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint '>=999'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______full__________auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______full__________auto____full__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______full__________auto____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______minor_only__________auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______minor_only__________auto____minor_only__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______minor_only__________auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______not_a_mode__________auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______not_a_mode__________auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto_______not_a_mode__________auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto______null_________auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto______null_________auto___null_.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________auto______null_________auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______full__________not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______full__________not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______full__________not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______minor_only__________not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______minor_only__________not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______minor_only__________not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______not_a_mode__________not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______not_a_mode__________not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source_______not_a_mode__________not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source______null_________not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source______null_________not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________not_a_source______null_________not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______full__________offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______full__________offline____full__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______full__________offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______minor_only__________offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______minor_only__________offline____minor_only__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______minor_only__________offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______not_a_mode__________offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______not_a_mode__________offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline_______not_a_mode__________offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline______null_________offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline______null_________offline___null_.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________offline______null_________offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______full__________php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______full__________php_net____full__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______full__________php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______minor_only__________php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______minor_only__________php_net____minor_only__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______minor_only__________php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______not_a_mode__________php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______not_a_mode__________php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net_______not_a_mode__________php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net______null_________php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net______null_________php_net___null_.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set___________php_net______null_________php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______full_________null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______full_________null___full__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______full_________null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______minor_only_________null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______minor_only_________null___minor_only__.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______minor_only_________null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______not_a_mode_________null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______not_a_mode_________null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null______not_a_mode_________null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null_____null________null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null_____null________null__null_.snap"
deleted file mode 100644
index 414b344..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set__________null_____null________null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint : Invalid version string ""
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______full______dev_master____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______full______dev_master____auto____full__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______full______dev_master____auto____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______minor_only______dev_master____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______minor_only______dev_master____auto____minor_only__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______minor_only______dev_master____auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______not_a_mode______dev_master____auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______not_a_mode______dev_master____auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto_______not_a_mode______dev_master____auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto______null_____dev_master____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto______null_____dev_master____auto___null_.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______auto______null_____dev_master____auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______full______dev_master____not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______full______dev_master____not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______full______dev_master____not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______minor_only______dev_master____not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______minor_only______dev_master____not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______minor_only______dev_master____not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______not_a_mode______dev_master____not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______not_a_mode______dev_master____not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source_______not_a_mode______dev_master____not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source______null_____dev_master____not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source______null_____dev_master____not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______not_a_source______null_____dev_master____not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______full______dev_master____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______full______dev_master____offline____full__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______full______dev_master____offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______minor_only______dev_master____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______minor_only______dev_master____offline____minor_only__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______minor_only______dev_master____offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______not_a_mode______dev_master____offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______not_a_mode______dev_master____offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline_______not_a_mode______dev_master____offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline______null_____dev_master____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline______null_____dev_master____offline___null_.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______offline______null_____dev_master____offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______full______dev_master____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______full______dev_master____php_net____full__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______full______dev_master____php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______minor_only______dev_master____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______minor_only______dev_master____php_net____minor_only__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______minor_only______dev_master____php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______not_a_mode______dev_master____php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______not_a_mode______dev_master____php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net_______not_a_mode______dev_master____php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net______null_____dev_master____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net______null_____dev_master____php_net___null_.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master_______php_net______null_____dev_master____php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______full______dev_master___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______full______dev_master___null___full__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______full______dev_master___null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______minor_only______dev_master___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______minor_only______dev_master___null___minor_only__.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______minor_only______dev_master___null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______not_a_mode______dev_master___null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______not_a_mode______dev_master___null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null______not_a_mode______dev_master___null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null_____null_____dev_master___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null_____null_____dev_master___null__null_.snap"
deleted file mode 100644
index d5dd379..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____dev_master______null_____null_____dev_master___null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 117:
-
- Error! No PHP versions could satisfy the constraint 'dev-master'.
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______full______foo____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______full______foo____auto____full__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______full______foo____auto____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______minor_only______foo____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______minor_only______foo____auto____minor_only__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______minor_only______foo____auto____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______not_a_mode______foo____auto____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______not_a_mode______foo____auto____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto_______not_a_mode______foo____auto____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto______null_____foo____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto______null_____foo____auto___null_.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______auto______null_____foo____auto___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______full______foo____not_a_source____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______full______foo____not_a_source____full__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______full______foo____not_a_source____full__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______minor_only______foo____not_a_source____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______minor_only______foo____not_a_source____minor_only__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______minor_only______foo____not_a_source____minor_only__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______not_a_mode______foo____not_a_source____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______not_a_mode______foo____not_a_source____not_a_mode__.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source_______not_a_mode______foo____not_a_source____not_a_mode__.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source______null_____foo____not_a_source___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source______null_____foo____not_a_source___null_.snap"
deleted file mode 100644
index 7978d85..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______not_a_source______null_____foo____not_a_source___null_.snap"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-In Command.php line 87:
-
- Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of
- fline]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______full______foo____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______full______foo____offline____full__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______full______foo____offline____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______minor_only______foo____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______minor_only______foo____offline____minor_only__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______minor_only______foo____offline____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______not_a_mode______foo____offline____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______not_a_mode______foo____offline____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline_______not_a_mode______foo____offline____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline______null_____foo____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline______null_____foo____offline___null_.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______offline______null_____foo____offline___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______full______foo____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______full______foo____php_net____full__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______full______foo____php_net____full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______minor_only______foo____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______minor_only______foo____php_net____minor_only__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______minor_only______foo____php_net____minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______not_a_mode______foo____php_net____not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______not_a_mode______foo____php_net____not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net_______not_a_mode______foo____php_net____not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net______null_____foo____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net______null_____foo____php_net___null_.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo_______php_net______null_____foo____php_net___null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______full______foo___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______full______foo___null___full__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______full______foo___null___full__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______minor_only______foo___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______minor_only______foo___null___minor_only__.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______minor_only______foo___null___minor_only__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______not_a_mode______foo___null___not_a_mode__.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______not_a_mode______foo___null___not_a_mode__.snap"
deleted file mode 100644
index c5ec377..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null______not_a_mode______foo___null___not_a_mode__.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In Command.php line 100:
-
- Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only]
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null_____null_____foo___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null_____null_____foo___null__null_.snap"
deleted file mode 100644
index b004a56..0000000
--- "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_fails_with_data_set____foo______null_____null_____foo___null__null_.snap"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-In VersionParser.php line 526:
-
- Could not parse version constraint foo: Invalid version string "foo"
-
-
-php-matrix [--source SOURCE] [--mode MODE] [--]
-
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______full___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______minor_only___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto______null__.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______full___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______minor_only___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline______null__.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______full___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______minor_only___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net______null__.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4_______php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______full___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______minor_only___.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null_____null__.snap"
new file mode 100644
index 0000000..a7d69fb
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______4______null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^4".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______full___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______minor_only___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto______null__.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______full___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______minor_only___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline______null__.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______full___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______minor_only___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net______null__.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999_______php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______full___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______minor_only___.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null_____null__.snap"
new file mode 100644
index 0000000..2376136
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set______7_999______null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "^7.999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______full___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______minor_only___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto______null__.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______full___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______minor_only___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline______null__.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______full___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______minor_only___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net______null__.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999_______php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______full___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______minor_only___.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null_____null__.snap"
new file mode 100644
index 0000000..6f24a51
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_______999______null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint ">=999".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______full___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______minor_only___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto______null__.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______full___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______minor_only___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline______null__.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______full___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______minor_only___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net______null__.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set____________php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______full___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______minor_only___.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null_____null__.snap"
new file mode 100644
index 0000000..7b2b5a8
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set___________null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint : Invalid version string ""
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______full___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______minor_only___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto______null__.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______full___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______minor_only___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline______null__.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______full___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______minor_only___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net______null__.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master_______php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______full___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______minor_only___.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null_____null__.snap"
new file mode 100644
index 0000000..9c366b7
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____dev_master______null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] No PHP versions could satisfy the constraint "dev-master".
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______full___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______minor_only___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto______null__.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______auto______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______full___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______full___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______minor_only___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______minor_only___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______not_a_mode___.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source______null__.snap"
new file mode 100644
index 0000000..9ce2486
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______not_a_source______null__.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --source "not-a-source". Available sources: [auto, php.net, offline]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______full___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______minor_only___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline______null__.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______offline______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______full___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______minor_only___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net_______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net______null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net______null__.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo_______php_net______null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______full___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______full___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______full___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______minor_only___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______minor_only___.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______minor_only___.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______not_a_mode___.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______not_a_mode___.snap"
new file mode 100644
index 0000000..cf5fa37
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null______not_a_mode___.snap"
@@ -0,0 +1,7 @@
+
+
+ [ERROR] Invalid --mode "not-a-mode". Available modes: [full, minor-only]
+
+
+constraint [--source SOURCE] [--mode MODE] [--]
+
diff --git "a/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null_____null__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null_____null__.snap"
new file mode 100644
index 0000000..33ab44f
--- /dev/null
+++ "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_fails_with_data_set_____foo______null_____null__.snap"
@@ -0,0 +1,3 @@
+
+ [ERROR] Could not parse version constraint foo: Invalid version string "foo"
+
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______full_______7_3_1_________auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______full_______7_3_1_________auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______minor_only_______7_3_1_________auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______minor_only_______7_3_1_________auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto______null______7_3_1_________auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto______null______7_3_1_________auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______full_______7_3_1_________offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______full_______7_3_1_________offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______minor_only_______7_3_1_________offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______minor_only_______7_3_1_________offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline______null______7_3_1_________offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline______null______7_3_1_________offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net_______full_______7_3_1_________php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net_______full_______7_3_1_________php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net_______minor_only_______7_3_1_________php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net_______minor_only_______7_3_1_________php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net______null______7_3_1_________php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________php_net______null______7_3_1_________php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1____________php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______full_______7_3_1________null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______full_______7_3_1________null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______minor_only_______7_3_1________null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______minor_only_______7_3_1________null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null_____null______7_3_1________null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null_____null______7_3_1________null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1___________null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______full_______7_3_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______full_______7_3_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______minor_only_______7_3_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______minor_only_______7_3_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto______null______7_3_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto______null______7_3_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______full_______7_3_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______full_______7_3_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______minor_only_______7_3_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______minor_only_______7_3_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline______null______7_3_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline______null______7_3_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net_______full_______7_3_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net_______full_______7_3_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net_______minor_only_______7_3_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net_______minor_only_______7_3_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net______null______7_3_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______php_net______null______7_3_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______full_______7_3_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______full_______7_3_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______minor_only_______7_3_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______minor_only_______7_3_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null_____null______7_3_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null_____null______7_3_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto_______full_______7_3__8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto_______full_______7_3__8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto_______minor_only_______7_3__8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto_______minor_only_______7_3__8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto______null______7_3__8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______auto______null______7_3__8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline_______full_______7_3__8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline_______full_______7_3__8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline_______minor_only_______7_3__8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline_______minor_only_______7_3__8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline______null______7_3__8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______offline______null______7_3__8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net_______full_______7_3__8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net_______full_______7_3__8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net_______minor_only_______7_3__8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net_______minor_only_______7_3__8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net______null______7_3__8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1_______php_net______null______7_3__8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null______full_______7_3__8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null______full_______7_3__8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null______minor_only_______7_3__8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null______minor_only_______7_3__8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null_____null______7_3__8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3__8_1______null_____null______7_3__8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3__8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto_______full_______7_3___8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto_______full_______7_3___8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto_______minor_only_______7_3___8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto_______minor_only_______7_3___8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto______null______7_3___8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______auto______null______7_3___8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline_______full_______7_3___8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline_______full_______7_3___8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline_______minor_only_______7_3___8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline_______minor_only_______7_3___8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline______null______7_3___8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______offline______null______7_3___8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net_______full_______7_3___8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net_______full_______7_3___8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net_______minor_only_______7_3___8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net_______minor_only_______7_3___8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net______null______7_3___8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1_______php_net______null______7_3___8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null______full_______7_3___8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null______full_______7_3___8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null______minor_only_______7_3___8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null______minor_only_______7_3___8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null_____null______7_3___8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3___8_1______null_____null______7_3___8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3___8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______full_______7_3_____8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______full_______7_3_____8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______full_______7_3_____8_1____auto____full____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______full_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______full_______7_3_____8_1____auto____full____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______full_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______minor_only_______7_3_____8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______minor_only_______7_3_____8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______minor_only_______7_3_____8_1____auto____minor_only____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______minor_only_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto_______minor_only_______7_3_____8_1____auto____minor_only____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto_______minor_only_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto______null______7_3_____8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto______null______7_3_____8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto______null______7_3_____8_1____auto___null___2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto______null____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______auto______null______7_3_____8_1____auto___null___2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______auto______null____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______full_______7_3_____8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______full_______7_3_____8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______full_______7_3_____8_1____offline____full____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______full_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______full_______7_3_____8_1____offline____full____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______full_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______minor_only_______7_3_____8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______minor_only_______7_3_____8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______minor_only_______7_3_____8_1____offline____minor_only____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______minor_only_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline_______minor_only_______7_3_____8_1____offline____minor_only____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline_______minor_only_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline______null______7_3_____8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline______null______7_3_____8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline______null______7_3_____8_1____offline___null___2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline______null____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______offline______null______7_3_____8_1____offline___null___2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______offline______null____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______full_______7_3_____8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______full_______7_3_____8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______full_______7_3_____8_1____php_net____full____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______full_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______full_______7_3_____8_1____php_net____full____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______full_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______minor_only_______7_3_____8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______minor_only_______7_3_____8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______minor_only_______7_3_____8_1____php_net____minor_only____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______minor_only_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net_______minor_only_______7_3_____8_1____php_net____minor_only____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net_______minor_only_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net______null______7_3_____8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net______null______7_3_____8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net______null______7_3_____8_1____php_net___null___2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net______null____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1_______php_net______null______7_3_____8_1____php_net___null___2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1_______php_net______null____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______full_______7_3_____8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______full_______7_3_____8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______full_______7_3_____8_1___null___full____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______full_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______full_______7_3_____8_1___null___full____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______full_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______minor_only_______7_3_____8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______minor_only_______7_3_____8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______minor_only_______7_3_____8_1___null___minor_only____2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______minor_only_____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null______minor_only_______7_3_____8_1___null___minor_only____2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null______minor_only_____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null_____null______7_3_____8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null_____null______7_3_____8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null_____null______7_3_____8_1___null__null___2.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null_____null____2.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_____8_1______null_____null______7_3_____8_1___null__null___2.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_____8_1______null_____null____2.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______full_______7_3____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______full_______7_3____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______minor_only_______7_3____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______minor_only_______7_3____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto______null______7_3____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto______null______7_3____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______full_______7_3____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______full_______7_3____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______minor_only_______7_3____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______minor_only_______7_3____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline______null______7_3____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline______null______7_3____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______full_______7_3____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______full_______7_3____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______minor_only_______7_3____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______minor_only_______7_3____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net______null______7_3____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net______null______7_3____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______full_______7_3___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______full_______7_3___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______minor_only_______7_3___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______minor_only_______7_3___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null_____null______7_3___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null_____null______7_3___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______7_3______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto_______full________7_3_99999___8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto_______full________7_3_99999___8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto_______minor_only________7_3_99999___8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto_______minor_only________7_3_99999___8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto______null_______7_3_99999___8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______auto______null_______7_3_99999___8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline_______full________7_3_99999___8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline_______full________7_3_99999___8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline_______minor_only________7_3_99999___8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline_______minor_only________7_3_99999___8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline______null_______7_3_99999___8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______offline______null_______7_3_99999___8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net_______full________7_3_99999___8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net_______full________7_3_99999___8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net_______minor_only________7_3_99999___8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net_______minor_only________7_3_99999___8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net______null_______7_3_99999___8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1_______php_net______null_______7_3_99999___8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null______full________7_3_99999___8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null______full________7_3_99999___8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null______minor_only________7_3_99999___8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null______minor_only________7_3_99999___8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null_____null_______7_3_99999___8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3_99999___8_1______null_____null_______7_3_99999___8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3_99999___8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______full________7_3__8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______full________7_3__8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______minor_only________7_3__8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto_______minor_only________7_3__8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto______null_______7_3__8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______auto______null_______7_3__8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______full________7_3__8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______full________7_3__8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______minor_only________7_3__8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline_______minor_only________7_3__8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline______null_______7_3__8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______offline______null_______7_3__8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______full________7_3__8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______full________7_3__8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______minor_only________7_3__8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net_______minor_only________7_3__8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net______null_______7_3__8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1_______php_net______null_______7_3__8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null______full________7_3__8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null______full________7_3__8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null______minor_only________7_3__8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null______minor_only________7_3__8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null_____null_______7_3__8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3__8_1______null_____null_______7_3__8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3__8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______full________7_3___8_1____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______full________7_3___8_1____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______minor_only________7_3___8_1____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto_______minor_only________7_3___8_1____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto______null_______7_3___8_1____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______auto______null_______7_3___8_1____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______full________7_3___8_1____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______full________7_3___8_1____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______minor_only________7_3___8_1____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline_______minor_only________7_3___8_1____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline______null_______7_3___8_1____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______offline______null_______7_3___8_1____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______full________7_3___8_1____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______full________7_3___8_1____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______minor_only________7_3___8_1____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net_______minor_only________7_3___8_1____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net______null_______7_3___8_1____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1_______php_net______null_______7_3___8_1____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null______full________7_3___8_1___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null______full________7_3___8_1___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null______minor_only________7_3___8_1___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null______minor_only________7_3___8_1___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null_____null_______7_3___8_1___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set______7_3___8_1______null_____null_______7_3___8_1___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_______7_3___8_1______null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______full___________auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______full___________auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______minor_only___________auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______minor_only___________auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto______null__________auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto______null__________auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______full___________offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______full___________offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______minor_only___________offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______minor_only___________offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline______null__________offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline______null__________offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______full___________php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______full___________php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______minor_only___________php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______minor_only___________php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net______null__________php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net______null__________php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set_____________php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______full__________null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______full__________null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______minor_only__________null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______minor_only__________null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null_____null_________null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null_____null_________null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set____________null_____null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______full_______stable____auto____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______full_______stable____auto____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______minor_only_______stable____auto____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______minor_only_______stable____auto____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto______null______stable____auto___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto______null______stable____auto___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______auto______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______full_______stable____offline____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______full_______stable____offline____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______minor_only_______stable____offline____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______minor_only_______stable____offline____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline______null______stable____offline___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline______null______stable____offline___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______offline______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______full_______stable____php_net____full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net_______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______full_______stable____php_net____full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net_______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______minor_only_______stable____php_net____minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net_______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______minor_only_______stable____php_net____minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net_______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net______null______stable____php_net___null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net______null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net______null______stable____php_net___null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable_______php_net______null__.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______full_______stable___null___full__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null______full___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______full_______stable___null___full__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null______full___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______minor_only_______stable___null___minor_only__.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null______minor_only___.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______minor_only_______stable___null___minor_only__.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null______minor_only___.snap"
diff --git "a/tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null_____null______stable___null__null_.snap" "b/tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null_____null__.snap"
similarity index 100%
rename from "tests/.pest/snapshots/E2E/Console/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null_____null______stable___null__null_.snap"
rename to "tests/.pest/snapshots/E2E/Console/ConstraintCommandTest/_TypistTech_PhpMatrix_Console_ConstraintCommand__\342\206\222_it_success_with_data_set______stable______null_____null__.snap"
diff --git a/tests/E2E/Console/CommandTest.php b/tests/E2E/Console/ConstraintCommandTest.php
similarity index 82%
rename from tests/E2E/Console/CommandTest.php
rename to tests/E2E/Console/ConstraintCommandTest.php
index 34b5665..27e9989 100644
--- a/tests/E2E/Console/CommandTest.php
+++ b/tests/E2E/Console/ConstraintCommandTest.php
@@ -2,29 +2,29 @@
declare(strict_types=1);
-namespace Tests\Feature\Console;
+namespace Tests\E2E\Console;
use Symfony\Component\Console\Terminal;
-use TypistTech\PhpMatrix\Console\Command;
+use TypistTech\PhpMatrix\Console\ConstraintCommand;
use TypistTech\PhpMatrix\Console\Mode;
use TypistTech\PhpMatrix\Console\Source;
-covers(Command::class);
+covers(ConstraintCommand::class);
-describe(Command::class, static function (): void {
- test('terminal dimensions are fixed in tests', function (): void {
+describe(ConstraintCommand::class, static function (): void {
+ test('terminal width is fixed in tests', function (): void {
$terminal = new Terminal;
- // Fix terminal dimensions for tests
- // They are configurable in phpunit.xml.
- expect($terminal->getHeight())->toBe(50);
- expect($terminal->getWidth())->toBe(80);
+ // Fix terminal width for tests
+ // It is configurable in phpunit.xml.
+ expect($terminal->getWidth())->toBe(120);
});
it('success', function (string $constraint, ?string $source, ?string $mode): void {
$applicationTester = $this->applicationTester();
$input = array_filter([
+ 'constraint',
'constraint' => $constraint,
'--source' => $source,
'--mode' => $mode,
@@ -53,13 +53,14 @@
])->with([
...array_column(Mode::cases(), 'value'),
null,
- ])->depends('terminal dimensions are fixed in tests');
+ ])->depends('terminal width is fixed in tests');
// Do not use snapshot to safeguard auto-merged PRs.
it('success without snapshot', function (): void {
$applicationTester = $this->applicationTester();
$applicationTester->run([
+ 'constraint',
'constraint' => '^7.3 || ~8.1.1',
'--source' => Source::Offline->value,
'--mode' => Mode::MinorOnly->value,
@@ -84,12 +85,13 @@
'highest' => '8.1',
];
expect($actual)->toEqual($expected);
- })->depends('terminal dimensions are fixed in tests');
+ })->depends('terminal width is fixed in tests');
it('fails', function (string $constraint, ?string $source, ?string $mode): void {
$applicationTester = $this->applicationTester();
$input = array_filter([
+ 'constraint',
'constraint' => $constraint,
'--source' => $source,
'--mode' => $mode,
@@ -115,5 +117,5 @@
...array_column(Mode::cases(), 'value'),
'not-a-mode',
null,
- ])->depends('terminal dimensions are fixed in tests');
+ ])->depends('terminal width is fixed in tests');
});
diff --git a/tests/Feature/Console/CommandTest.php b/tests/Feature/Console/ConstraintCommandTest.php
similarity index 86%
rename from tests/Feature/Console/CommandTest.php
rename to tests/Feature/Console/ConstraintCommandTest.php
index baef9c3..85f2cd3 100644
--- a/tests/Feature/Console/CommandTest.php
+++ b/tests/Feature/Console/ConstraintCommandTest.php
@@ -6,14 +6,14 @@
use Mockery;
use Symfony\Component\Console\Tester\CommandTester;
-use TypistTech\PhpMatrix\Console\Command;
+use TypistTech\PhpMatrix\Console\ConstraintCommand;
use TypistTech\PhpMatrix\Console\MatrixFactory;
use TypistTech\PhpMatrix\Console\Mode;
use TypistTech\PhpMatrix\Console\Source;
-covers(Command::class);
+covers(ConstraintCommand::class);
-describe(Command::class, static function (): void {
+describe(ConstraintCommand::class, static function (): void {
it('uses the matrix to output json', function (): void {
[
'matrix' => $matrix,
@@ -28,7 +28,7 @@
->andReturn($matrix)
->getMock();
- $command = new Command($matrixFactory);
+ $command = new ConstraintCommand($matrixFactory);
$tester = new CommandTester($command);
$tester->execute(['constraint' => $constraint]);
@@ -53,7 +53,7 @@
->andReturn($matrix)
->getMock();
- $command = new Command($matrixFactory);
+ $command = new ConstraintCommand($matrixFactory);
$tester = new CommandTester($command);
$tester->execute(