diff --git a/src/Console/Command.php b/src/Console/Command.php index 24df7f3..07c5543 100644 --- a/src/Console/Command.php +++ b/src/Console/Command.php @@ -12,6 +12,7 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; +use TypistTech\PhpMatrix\Versions; #[AsCommand( name: 'php-matrix', @@ -118,14 +119,12 @@ protected function execute(InputInterface $input, OutputInterface $output): int ); } - [$lowest, $highest] = $matrix->lowestAndHighest(...$versions); - $result = json_encode( (object) [ self::CONSTRAINT_ARGUMENT_NAME => $constraint, - 'versions' => $versions, - 'lowest' => $lowest, - 'highest' => $highest, + 'versions' => Versions::sort(...$versions), + 'lowest' => Versions::lowest(...$versions), + 'highest' => Versions::highest(...$versions), ], JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT ); diff --git a/src/Matrix.php b/src/Matrix.php index c3b9292..969ac0a 100644 --- a/src/Matrix.php +++ b/src/Matrix.php @@ -22,16 +22,4 @@ public function satisfiedBy(string $constraint): array $constraint ); } - - public function lowestAndHighest(string $version, string ...$versions): array - { - if (empty($versions)) { - return [$version, $version]; - } - - $sorted = Semver::sort([$version, ...$versions]); - $count = count($sorted); - - return [$sorted[0], $sorted[$count - 1]]; - } } diff --git a/src/MatrixInterface.php b/src/MatrixInterface.php index e0c3312..d673fdb 100644 --- a/src/MatrixInterface.php +++ b/src/MatrixInterface.php @@ -10,9 +10,4 @@ interface MatrixInterface * @return string[] */ public function satisfiedBy(string $constraint): array; - - /** - * @return string[] - */ - public function lowestAndHighest(string $version, string ...$versions): array; } diff --git a/src/Versions.php b/src/Versions.php new file mode 100644 index 0000000..66a8c88 --- /dev/null +++ b/src/Versions.php @@ -0,0 +1,34 @@ +=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index bfcd224..88b44f9 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint '>=999'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index 96016f2..d5dd379 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 116: +In Command.php line 117: Error! No PHP versions could satisfy the constraint 'dev-master'. 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index f5fbf4e..7978d85 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 86: +In Command.php line 87: Error! Invalid source 'not-a-source'. Available sources: [auto, php.net, of fline] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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" index c4adbfb..c5ec377 100644 --- "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" @@ -1,5 +1,5 @@ -In Command.php line 99: +In Command.php line 100: Error! Invalid mode 'not-a-mode'. Available modes: [full, minor-only] 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______full_______7_3_1_________auto____full__.snap" index 0cac4c3..ed183a1 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto_______full_______7_3_1_________auto____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/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" index 8c486ef..1a0e5cc 100644 --- "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/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" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto______null______7_3_1_________auto___null_.snap" index 8c486ef..1a0e5cc 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________auto______null______7_3_1_________auto___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______full_______7_3_1_________offline____full__.snap" index 0cac4c3..ed183a1 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline_______full_______7_3_1_________offline____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/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" index 8c486ef..1a0e5cc 100644 --- "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/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" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline______null______7_3_1_________offline___null_.snap" index 8c486ef..1a0e5cc 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1____________offline______null______7_3_1_________offline___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/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" index 0cac4c3..ed183a1 100644 --- "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/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" @@ -1,468 +1,468 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/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" index 8c486ef..1a0e5cc 100644 --- "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/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" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/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" index 8c486ef..1a0e5cc 100644 --- "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/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" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______full_______7_3_1________null___full__.snap" index 0cac4c3..ed183a1 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null______full_______7_3_1________null___full__.snap" @@ -1,468 +1,468 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/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" index 8c486ef..1a0e5cc 100644 --- "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/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" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null_____null______7_3_1________null__null_.snap" index 8c486ef..1a0e5cc 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1___________null_____null______7_3_1________null__null_.snap" @@ -1,23 +1,23 @@ { "constraint": "~7.3.1 || *", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______full_______7_3_1____auto____full__.snap" index acb7e3e..6b159ec 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______auto_______full_______7_3_1____auto____full__.snap" @@ -1,39 +1,39 @@ { "constraint": "~7.3.1", "versions": [ - "7.3.33", - "7.3.32", - "7.3.31", - "7.3.30", - "7.3.29", - "7.3.28", - "7.3.27", - "7.3.26", - "7.3.25", - "7.3.24", - "7.3.23", - "7.3.22", - "7.3.21", - "7.3.20", - "7.3.19", - "7.3.18", - "7.3.17", - "7.3.16", - "7.3.15", - "7.3.14", - "7.3.13", - "7.3.12", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", + "7.3.1", "7.3.2", - "7.3.1" + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33" ], "lowest": "7.3.1", "highest": "7.3.33" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______full_______7_3_1____offline____full__.snap" index acb7e3e..6b159ec 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1_______offline_______full_______7_3_1____offline____full__.snap" @@ -1,39 +1,39 @@ { "constraint": "~7.3.1", "versions": [ - "7.3.33", - "7.3.32", - "7.3.31", - "7.3.30", - "7.3.29", - "7.3.28", - "7.3.27", - "7.3.26", - "7.3.25", - "7.3.24", - "7.3.23", - "7.3.22", - "7.3.21", - "7.3.20", - "7.3.19", - "7.3.18", - "7.3.17", - "7.3.16", - "7.3.15", - "7.3.14", - "7.3.13", - "7.3.12", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", + "7.3.1", "7.3.2", - "7.3.1" + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33" ], "lowest": "7.3.1", "highest": "7.3.33" 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/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" index acb7e3e..6b159ec 100644 --- "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/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" @@ -1,39 +1,39 @@ { "constraint": "~7.3.1", "versions": [ - "7.3.33", - "7.3.32", - "7.3.31", - "7.3.30", - "7.3.29", - "7.3.28", - "7.3.27", - "7.3.26", - "7.3.25", - "7.3.24", - "7.3.23", - "7.3.22", - "7.3.21", - "7.3.20", - "7.3.19", - "7.3.18", - "7.3.17", - "7.3.16", - "7.3.15", - "7.3.14", - "7.3.13", - "7.3.12", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", + "7.3.1", "7.3.2", - "7.3.1" + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33" ], "lowest": "7.3.1", "highest": "7.3.33" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______full_______7_3_1___null___full__.snap" index acb7e3e..6b159ec 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_1______null______full_______7_3_1___null___full__.snap" @@ -1,39 +1,39 @@ { "constraint": "~7.3.1", "versions": [ - "7.3.33", - "7.3.32", - "7.3.31", - "7.3.30", - "7.3.29", - "7.3.28", - "7.3.27", - "7.3.26", - "7.3.25", - "7.3.24", - "7.3.23", - "7.3.22", - "7.3.21", - "7.3.20", - "7.3.19", - "7.3.18", - "7.3.17", - "7.3.16", - "7.3.15", - "7.3.14", - "7.3.13", - "7.3.12", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", + "7.3.1", "7.3.2", - "7.3.1" + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33" ], "lowest": "7.3.1", "highest": "7.3.33" 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/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" index 679b2d1..155ae18 100644 --- "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/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" @@ -1,101 +1,101 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.1", "highest": "8.0.30" 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 679b2d1..155ae18 100644 --- "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/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" @@ -1,101 +1,101 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.1", "highest": "8.0.30" 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 679b2d1..155ae18 100644 --- "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/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" @@ -1,101 +1,101 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.1", "highest": "8.0.30" 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 679b2d1..155ae18 100644 --- "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/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" @@ -1,101 +1,101 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.1", "highest": "8.0.30" 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 5d6702c..7a5735e 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 19d75f5..4a18077 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.1", "highest": "8.1.0" 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 19d75f5..4a18077 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.1", "highest": "8.1.0" 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 19d75f5..4a18077 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.1", "highest": "8.1.0" 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 19d75f5..4a18077 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.1", "highest": "8.1.0" 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 760de36..a1037ba 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 011804c..da4de44 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f74a7cc..e4e1f95 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 011804c..da4de44 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f74a7cc..e4e1f95 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 011804c..da4de44 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f74a7cc..e4e1f95 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 011804c..da4de44 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f74a7cc..e4e1f95 100644 --- "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/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" @@ -1,149 +1,149 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", + "8.1.14", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", + "8.2.0", + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", "8.2.13", - "8.1.26", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", "8.3.0", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", - "8.1.14", - "8.2.1", - "8.2.0", - "8.1.13", - "8.1.12", - "8.1.11", - "8.1.10", - "8.1.9", - "8.1.8", - "8.1.7", - "8.1.6", - "8.1.5", - "8.1.4", - "8.1.3", - "8.1.2", - "8.1.1", - "8.1.0" + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "7.3.0", "highest": "8.4.2" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index f05c0b8..b75bd3c 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "^7.3 || ^8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/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" index 0590682..893c0e3 100644 --- "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/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" @@ -1,12 +1,12 @@ { "constraint": "~7.3 || ~8.1", "versions": [ - "7.4", "7.3", - "8.4", - "8.3", + "7.4", + "8.1", "8.2", - "8.1" + "8.3", + "8.4" ], "lowest": "7.3", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______full_______7_3____auto____full__.snap" index 37a2884..74c89f6 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______full_______7_3____auto____full__.snap" @@ -1,72 +1,72 @@ { "constraint": "^7.3", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0" + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33" ], "lowest": "7.3.0", "highest": "7.4.33" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______minor_only_______7_3____auto____minor_only__.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto_______minor_only_______7_3____auto____minor_only__.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto______null______7_3____auto___null_.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______auto______null______7_3____auto___null_.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______full_______7_3____offline____full__.snap" index 37a2884..74c89f6 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______full_______7_3____offline____full__.snap" @@ -1,72 +1,72 @@ { "constraint": "^7.3", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0" + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33" ], "lowest": "7.3.0", "highest": "7.4.33" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______minor_only_______7_3____offline____minor_only__.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline_______minor_only_______7_3____offline____minor_only__.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline______null______7_3____offline___null_.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______offline______null______7_3____offline___null_.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______full_______7_3____php_net____full__.snap" index 37a2884..74c89f6 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net_______full_______7_3____php_net____full__.snap" @@ -1,72 +1,72 @@ { "constraint": "^7.3", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0" + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33" ], "lowest": "7.3.0", "highest": "7.4.33" 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/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" index ce80dfe..bd7b9f5 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net______null______7_3____php_net___null_.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3_______php_net______null______7_3____php_net___null_.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______full_______7_3___null___full__.snap" index 37a2884..74c89f6 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______full_______7_3___null___full__.snap" @@ -1,72 +1,72 @@ { "constraint": "^7.3", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0" + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33" ], "lowest": "7.3.0", "highest": "7.4.33" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______minor_only_______7_3___null___minor_only__.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null______minor_only_______7_3___null___minor_only__.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null_____null______7_3___null__null_.snap" index ce80dfe..bd7b9f5 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____7_3______null_____null______7_3___null__null_.snap" @@ -1,8 +1,8 @@ { "constraint": "^7.3", "versions": [ - "7.4", - "7.3" + "7.3", + "7.4" ], "lowest": "7.3", "highest": "7.4" 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/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" index 39c1b62..d20e18f 100644 --- "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/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" @@ -1,69 +1,69 @@ { "constraint": ">=7.3.99999 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.4.25", - "7.4.24", - "7.4.23", - "7.4.22", - "7.4.21", - "7.4.20", - "7.4.19", - "7.4.18", - "7.4.16", - "7.4.15", - "7.4.14", - "7.4.13", - "7.4.12", - "7.4.11", - "7.4.10", - "7.4.9", - "7.4.8", - "7.4.7", - "7.4.6", - "7.4.5", - "7.4.4", - "7.4.3", - "7.4.2", - "7.4.1", "7.4.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.4.0", "highest": "8.1.0" 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/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" index 39c1b62..d20e18f 100644 --- "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/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" @@ -1,69 +1,69 @@ { "constraint": ">=7.3.99999 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.4.25", - "7.4.24", - "7.4.23", - "7.4.22", - "7.4.21", - "7.4.20", - "7.4.19", - "7.4.18", - "7.4.16", - "7.4.15", - "7.4.14", - "7.4.13", - "7.4.12", - "7.4.11", - "7.4.10", - "7.4.9", - "7.4.8", - "7.4.7", - "7.4.6", - "7.4.5", - "7.4.4", - "7.4.3", - "7.4.2", - "7.4.1", "7.4.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.4.0", "highest": "8.1.0" 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/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" index 39c1b62..d20e18f 100644 --- "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/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" @@ -1,69 +1,69 @@ { "constraint": ">=7.3.99999 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.4.25", - "7.4.24", - "7.4.23", - "7.4.22", - "7.4.21", - "7.4.20", - "7.4.19", - "7.4.18", - "7.4.16", - "7.4.15", - "7.4.14", - "7.4.13", - "7.4.12", - "7.4.11", - "7.4.10", - "7.4.9", - "7.4.8", - "7.4.7", - "7.4.6", - "7.4.5", - "7.4.4", - "7.4.3", - "7.4.2", - "7.4.1", "7.4.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.4.0", "highest": "8.1.0" 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/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" index 39c1b62..d20e18f 100644 --- "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/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" @@ -1,69 +1,69 @@ { "constraint": ">=7.3.99999 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.4.25", - "7.4.24", - "7.4.23", - "7.4.22", - "7.4.21", - "7.4.20", - "7.4.19", - "7.4.18", - "7.4.16", - "7.4.15", - "7.4.14", - "7.4.13", - "7.4.12", - "7.4.11", - "7.4.10", - "7.4.9", - "7.4.8", - "7.4.7", - "7.4.6", - "7.4.5", - "7.4.4", - "7.4.3", - "7.4.2", - "7.4.1", "7.4.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.4.0", "highest": "8.1.0" 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/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" index a063a12..7d65005 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.0", "highest": "8.0.30" 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index a063a12..7d65005 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.0", "highest": "8.0.30" 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index a063a12..7d65005 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.0", "highest": "8.0.30" 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index a063a12..7d65005 100644 --- "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/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" @@ -1,102 +1,102 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30" ], "lowest": "7.3.0", "highest": "8.0.30" 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 952d6e7..08f0f8c 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0" ], "lowest": "7.3", 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/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" index 06dc5d4..f7c3fd3 100644 --- "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/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" @@ -1,103 +1,103 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.0", "highest": "8.1.0" 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 06dc5d4..f7c3fd3 100644 --- "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/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" @@ -1,103 +1,103 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.0", "highest": "8.1.0" 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 06dc5d4..f7c3fd3 100644 --- "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/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" @@ -1,103 +1,103 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.0", "highest": "8.1.0" 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index 06dc5d4..f7c3fd3 100644 --- "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/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" @@ -1,103 +1,103 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.4.7", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.4.4", - "7.3.16", - "7.4.3", - "7.3.15", - "7.4.2", - "7.3.14", - "7.3.13", - "7.4.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", "7.4.0", - "7.3.11", - "7.3.10", - "7.3.9", - "7.3.8", - "7.3.7", - "7.3.6", - "7.3.5", - "7.3.4", - "7.3.3", - "7.3.2", - "7.3.1", - "7.3.0", - "8.0.30", - "8.0.29", - "8.0.28", - "8.0.27", - "8.0.26", - "8.0.25", - "8.0.24", - "8.0.23", - "8.0.22", - "8.0.21", - "8.0.20", - "8.0.19", - "8.0.18", - "8.0.17", - "8.0.16", - "8.0.15", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", "8.0.1", - "8.0.0" + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", + "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0" ], "lowest": "7.3.0", "highest": "8.1.0" 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/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" index e75041f..ce32906 100644 --- "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/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" @@ -1,8 +1,8 @@ { "constraint": ">=7.3 <=8.1", "versions": [ - "7.4", "7.3", + "7.4", "8.0", "8.1" ], 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______full___________auto____full__.snap" index 76aa8fd..e945938 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______full___________auto____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "*", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______minor_only___________auto____minor_only__.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto_______minor_only___________auto____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto______null__________auto___null_.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________auto______null__________auto___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______full___________offline____full__.snap" index 76aa8fd..e945938 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______full___________offline____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "*", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______minor_only___________offline____minor_only__.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline_______minor_only___________offline____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline______null__________offline___null_.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________offline______null__________offline___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______full___________php_net____full__.snap" index 76aa8fd..e945938 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______full___________php_net____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "*", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______minor_only___________php_net____minor_only__.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net_______minor_only___________php_net____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net______null__________php_net___null_.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set____________php_net______null__________php_net___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______full__________null___full__.snap" index 76aa8fd..e945938 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______full__________null___full__.snap" @@ -1,468 +1,468 @@ { "constraint": "*", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______minor_only__________null___minor_only__.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null______minor_only__________null___minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null_____null_________null__null_.snap" index 4fb7de6..3da6248 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set___________null_____null_________null__null_.snap" @@ -1,23 +1,23 @@ { "constraint": "*", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______full_______stable____auto____full__.snap" index b6f7b36..1937701 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______full_______stable____auto____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "@stable", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______minor_only_______stable____auto____minor_only__.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto_______minor_only_______stable____auto____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto______null______stable____auto___null_.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______auto______null______stable____auto___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______full_______stable____offline____full__.snap" index b6f7b36..1937701 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______full_______stable____offline____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "@stable", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______minor_only_______stable____offline____minor_only__.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline_______minor_only_______stable____offline____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline______null______stable____offline___null_.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______offline______null______stable____offline___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______full_______stable____php_net____full__.snap" index b6f7b36..1937701 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______full_______stable____php_net____full__.snap" @@ -1,468 +1,468 @@ { "constraint": "@stable", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______minor_only_______stable____php_net____minor_only__.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net_______minor_only_______stable____php_net____minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net______null______stable____php_net___null_.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable_______php_net______null______stable____php_net___null_.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______full_______stable___null___full__.snap" index b6f7b36..1937701 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______full_______stable___null___full__.snap" @@ -1,468 +1,468 @@ { "constraint": "@stable", "versions": [ - "5.6.40", - "5.6.39", - "5.6.38", - "5.6.37", - "5.6.36", - "5.6.35", - "5.6.34", - "5.6.33", - "5.6.32", - "5.6.31", - "5.6.30", - "5.6.29", - "5.6.28", - "5.6.27", - "5.6.26", - "5.6.25", - "5.6.24", - "5.5.38", - "5.6.23", - "5.5.37", - "5.5.36", - "5.6.22", - "5.6.21", - "5.5.35", - "5.6.20", - "5.5.34", - "5.6.19", - "5.5.33", - "5.6.18", - "5.5.32", - "5.6.17", - "5.5.31", - "5.6.16", - "5.5.30", - "5.6.15", - "5.6.14", - "5.6.13", - "5.5.29", - "5.5.28", - "5.6.12", - "5.6.11", - "5.5.27", - "5.6.10", - "5.5.26", - "5.6.9", - "5.5.25", - "5.6.8", - "5.5.24", - "5.6.7", - "5.5.23", - "5.6.6", - "5.5.22", - "5.6.5", - "5.5.21", - "5.6.4", - "5.5.20", - "5.6.3", - "5.5.19", - "5.6.2", - "5.5.18", - "5.6.1", - "5.5.17", - "5.6.0", - "5.5.16", - "5.5.15", - "5.5.14", - "5.5.13", - "5.5.12", - "5.5.11", - "5.5.10", - "5.5.9", - "5.5.8", - "5.5.7", - "5.5.6", - "5.5.5", - "5.5.4", - "5.5.3", - "5.5.2", - "5.5.1", - "5.5.0", - "5.4.45", - "5.4.44", - "5.4.43", - "5.4.42", - "5.4.41", - "5.4.40", - "5.4.39", - "5.4.38", - "5.4.37", - "5.4.36", - "5.4.35", - "5.4.34", - "5.4.33", - "5.4.32", - "5.4.31", - "5.4.30", - "5.4.29", - "5.4.28", - "5.4.27", - "5.4.26", - "5.4.25", - "5.4.24", - "5.4.23", - "5.4.22", - "5.4.21", - "5.4.20", - "5.4.19", - "5.4.18", - "5.4.17", - "5.4.16", - "5.4.15", - "5.4.14", - "5.4.13", - "5.4.12", - "5.4.11", - "5.4.10", - "5.4.9", - "5.4.8", - "5.4.7", - "5.4.6", - "5.4.5", - "5.4.4", - "5.4.3", - "5.4.2", - "5.4.1", - "5.4.0", - "5.3.29", - "5.3.28", - "5.3.27", - "5.3.26", - "5.3.25", - "5.3.24", - "5.3.23", - "5.3.22", - "5.3.21", - "5.3.20", - "5.3.19", - "5.3.18", - "5.3.17", - "5.3.16", - "5.3.15", - "5.3.14", - "5.3.13", - "5.3.12", - "5.3.11", - "5.3.10", - "5.3.9", - "5.3.8", - "5.3.7", - "5.3.6", - "5.3.5", - "5.3.4", - "5.2.17", - "5.2.16", - "5.2.15", - "5.3.3", - "5.2.14", - "5.3.2", - "5.2.13", - "5.3.1", - "5.2.12", + "5.0.0", + "5.0.1", + "5.0.2", + "5.0.3", + "5.0.4", + "5.0.5", + "5.1.0", + "5.1.1", + "5.1.2", + "5.1.3", + "5.1.4", + "5.1.5", + "5.1.6", + "5.2.0", + "5.2.1", + "5.2.2", + "5.2.3", + "5.2.4", + "5.2.5", + "5.2.6", + "5.2.8", + "5.2.9", + "5.2.10", "5.2.11", + "5.2.12", + "5.2.13", + "5.2.14", + "5.2.15", + "5.2.16", + "5.2.17", "5.3.0", - "5.2.10", - "5.2.9", - "5.2.8", - "5.2.6", - "5.2.5", - "5.2.4", - "5.2.3", - "5.2.2", - "5.2.1", - "5.2.0", - "5.1.6", - "5.1.5", - "5.1.4", - "5.1.3", - "5.1.2", - "5.1.1", - "5.1.0", - "5.0.5", - "5.0.4", - "5.0.3", - "5.0.2", - "5.0.1", - "5.0.0", - "7.4.33", - "7.4.32", - "7.4.30", - "7.4.29", - "7.4.28", - "7.4.27", - "7.4.26", - "7.3.33", - "7.3.32", - "7.4.25", - "7.3.31", - "7.4.24", - "7.4.23", - "7.3.30", - "7.4.22", - "7.3.29", - "7.4.21", - "7.4.20", - "7.3.28", - "7.4.19", - "7.4.18", - "7.4.16", - "7.3.27", - "7.4.15", - "7.4.14", - "7.3.26", - "7.3.25", - "7.4.13", - "7.2.34", - "7.3.24", - "7.4.12", - "7.4.11", - "7.3.23", - "7.3.22", - "7.4.10", - "7.2.33", - "7.4.9", - "7.3.21", - "7.4.8", - "7.3.20", - "7.2.32", - "7.4.7", - "7.2.31", - "7.3.19", - "7.4.6", - "7.3.18", - "7.4.5", - "7.3.17", - "7.2.30", - "7.2.29", - "7.4.4", - "7.3.16", - "7.4.3", - "7.2.28", - "7.3.15", - "7.4.2", - "7.3.14", - "7.2.27", - "7.3.13", - "7.2.26", - "7.4.1", - "7.2.25", - "7.3.12", - "7.4.0", - "7.1.33", - "7.2.24", - "7.3.11", - "7.1.32", - "7.3.10", - "7.2.23", - "7.2.22", - "7.3.9", - "7.1.31", - "7.2.21", - "7.3.8", - "7.1.30", - "7.2.20", - "7.3.7", - "7.2.19", - "7.3.6", - "7.1.29", - "7.2.18", - "7.3.5", - "7.1.28", - "7.2.17", - "7.3.4", - "7.1.27", - "7.2.16", - "7.3.3", - "7.1.26", - "7.2.15", - "7.3.2", - "7.2.14", - "7.3.1", - "7.0.33", - "7.1.25", - "7.3.0", - "7.2.13", - "7.0.32", - "7.1.24", - "7.2.12", - "7.1.23", - "7.2.11", - "7.1.22", - "7.2.10", - "7.1.21", - "7.0.31", - "7.2.9", - "7.1.20", - "7.2.8", - "7.1.19", - "7.0.30", - "7.2.7", - "7.1.18", - "7.2.6", - "7.1.17", - "7.2.5", - "7.1.16", - "7.0.29", - "7.2.4", - "7.1.15", - "7.2.3", - "7.0.28", - "7.1.14", - "7.2.2", - "7.0.27", - "7.2.1", - "7.1.13", - "7.2.0", - "7.1.12", - "7.0.26", - "7.1.11", - "7.0.25", - "7.1.10", - "7.0.24", - "7.1.9", - "7.0.23", - "7.1.8", - "7.0.22", - "7.1.7", - "7.0.21", - "7.1.6", - "7.0.20", - "7.1.5", - "7.0.19", - "7.1.4", - "7.0.18", - "7.1.3", - "7.0.17", - "7.1.2", - "7.0.16", - "7.1.1", - "7.0.15", + "5.3.1", + "5.3.2", + "5.3.3", + "5.3.4", + "5.3.5", + "5.3.6", + "5.3.7", + "5.3.8", + "5.3.9", + "5.3.10", + "5.3.11", + "5.3.12", + "5.3.13", + "5.3.14", + "5.3.15", + "5.3.16", + "5.3.17", + "5.3.18", + "5.3.19", + "5.3.20", + "5.3.21", + "5.3.22", + "5.3.23", + "5.3.24", + "5.3.25", + "5.3.26", + "5.3.27", + "5.3.28", + "5.3.29", + "5.4.0", + "5.4.1", + "5.4.2", + "5.4.3", + "5.4.4", + "5.4.5", + "5.4.6", + "5.4.7", + "5.4.8", + "5.4.9", + "5.4.10", + "5.4.11", + "5.4.12", + "5.4.13", + "5.4.14", + "5.4.15", + "5.4.16", + "5.4.17", + "5.4.18", + "5.4.19", + "5.4.20", + "5.4.21", + "5.4.22", + "5.4.23", + "5.4.24", + "5.4.25", + "5.4.26", + "5.4.27", + "5.4.28", + "5.4.29", + "5.4.30", + "5.4.31", + "5.4.32", + "5.4.33", + "5.4.34", + "5.4.35", + "5.4.36", + "5.4.37", + "5.4.38", + "5.4.39", + "5.4.40", + "5.4.41", + "5.4.42", + "5.4.43", + "5.4.44", + "5.4.45", + "5.5.0", + "5.5.1", + "5.5.2", + "5.5.3", + "5.5.4", + "5.5.5", + "5.5.6", + "5.5.7", + "5.5.8", + "5.5.9", + "5.5.10", + "5.5.11", + "5.5.12", + "5.5.13", + "5.5.14", + "5.5.15", + "5.5.16", + "5.5.17", + "5.5.18", + "5.5.19", + "5.5.20", + "5.5.21", + "5.5.22", + "5.5.23", + "5.5.24", + "5.5.25", + "5.5.26", + "5.5.27", + "5.5.28", + "5.5.29", + "5.5.30", + "5.5.31", + "5.5.32", + "5.5.33", + "5.5.34", + "5.5.35", + "5.5.36", + "5.5.37", + "5.5.38", + "5.6.0", + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "5.6.17", + "5.6.18", + "5.6.19", + "5.6.20", + "5.6.21", + "5.6.22", + "5.6.23", + "5.6.24", + "5.6.25", + "5.6.26", + "5.6.27", + "5.6.28", + "5.6.29", + "5.6.30", + "5.6.31", + "5.6.32", + "5.6.33", + "5.6.34", + "5.6.35", + "5.6.36", + "5.6.37", + "5.6.38", + "5.6.39", + "5.6.40", + "7.0.0", + "7.0.1", + "7.0.2", + "7.0.3", + "7.0.4", + "7.0.5", + "7.0.6", + "7.0.7", + "7.0.8", + "7.0.9", + "7.0.10", + "7.0.11", + "7.0.12", + "7.0.13", "7.0.14", + "7.0.15", + "7.0.16", + "7.0.17", + "7.0.18", + "7.0.19", + "7.0.20", + "7.0.21", + "7.0.22", + "7.0.23", + "7.0.24", + "7.0.25", + "7.0.26", + "7.0.27", + "7.0.28", + "7.0.29", + "7.0.30", + "7.0.31", + "7.0.32", + "7.0.33", "7.1.0", - "7.0.13", - "7.0.12", - "7.0.11", - "7.0.10", - "7.0.9", - "7.0.8", - "7.0.7", - "7.0.6", - "7.0.5", - "7.0.4", - "7.0.3", - "7.0.2", - "7.0.1", - "7.0.0", - "8.4.2", - "8.3.15", - "8.2.27", - "8.1.31", - "8.4.1", - "8.3.14", - "8.2.26", - "8.1.30", - "8.3.13", - "8.2.25", - "8.2.24", - "8.3.12", - "8.1.29", - "8.2.23", - "8.3.11", - "8.3.10", - "8.2.22", - "8.2.21", - "8.3.9", - "8.3.8", - "8.2.20", - "8.2.19", - "8.3.7", - "8.1.28", - "8.3.6", - "8.2.18", - "8.1.27", - "8.3.4", - "8.2.17", - "8.3.3", - "8.2.16", - "8.2.15", - "8.3.2", - "8.2.14", - "8.3.1", - "8.2.13", - "8.1.26", - "8.3.0", - "8.0.30", - "8.1.25", - "8.2.12", - "8.1.24", - "8.2.11", - "8.1.23", - "8.2.10", - "8.1.22", - "8.2.9", - "8.2.8", - "8.0.29", - "8.1.21", - "8.1.20", - "8.2.7", - "8.1.19", - "8.2.6", - "8.0.28", - "8.1.18", - "8.2.5", - "8.1.17", - "8.2.4", - "8.2.3", - "8.1.16", - "8.1.15", - "8.2.2", + "7.1.1", + "7.1.2", + "7.1.3", + "7.1.4", + "7.1.5", + "7.1.6", + "7.1.7", + "7.1.8", + "7.1.9", + "7.1.10", + "7.1.11", + "7.1.12", + "7.1.13", + "7.1.14", + "7.1.15", + "7.1.16", + "7.1.17", + "7.1.18", + "7.1.19", + "7.1.20", + "7.1.21", + "7.1.22", + "7.1.23", + "7.1.24", + "7.1.25", + "7.1.26", + "7.1.27", + "7.1.28", + "7.1.29", + "7.1.30", + "7.1.31", + "7.1.32", + "7.1.33", + "7.2.0", + "7.2.1", + "7.2.2", + "7.2.3", + "7.2.4", + "7.2.5", + "7.2.6", + "7.2.7", + "7.2.8", + "7.2.9", + "7.2.10", + "7.2.11", + "7.2.12", + "7.2.13", + "7.2.14", + "7.2.15", + "7.2.16", + "7.2.17", + "7.2.18", + "7.2.19", + "7.2.20", + "7.2.21", + "7.2.22", + "7.2.23", + "7.2.24", + "7.2.25", + "7.2.26", + "7.2.27", + "7.2.28", + "7.2.29", + "7.2.30", + "7.2.31", + "7.2.32", + "7.2.33", + "7.2.34", + "7.3.0", + "7.3.1", + "7.3.2", + "7.3.3", + "7.3.4", + "7.3.5", + "7.3.6", + "7.3.7", + "7.3.8", + "7.3.9", + "7.3.10", + "7.3.11", + "7.3.12", + "7.3.13", + "7.3.14", + "7.3.15", + "7.3.16", + "7.3.17", + "7.3.18", + "7.3.19", + "7.3.20", + "7.3.21", + "7.3.22", + "7.3.23", + "7.3.24", + "7.3.25", + "7.3.26", + "7.3.27", + "7.3.28", + "7.3.29", + "7.3.30", + "7.3.31", + "7.3.32", + "7.3.33", + "7.4.0", + "7.4.1", + "7.4.2", + "7.4.3", + "7.4.4", + "7.4.5", + "7.4.6", + "7.4.7", + "7.4.8", + "7.4.9", + "7.4.10", + "7.4.11", + "7.4.12", + "7.4.13", + "7.4.14", + "7.4.15", + "7.4.16", + "7.4.18", + "7.4.19", + "7.4.20", + "7.4.21", + "7.4.22", + "7.4.23", + "7.4.24", + "7.4.25", + "7.4.26", + "7.4.27", + "7.4.28", + "7.4.29", + "7.4.30", + "7.4.32", + "7.4.33", + "8.0.0", + "8.0.1", + "8.0.2", + "8.0.3", + "8.0.5", + "8.0.6", + "8.0.7", + "8.0.8", + "8.0.9", + "8.0.10", + "8.0.11", + "8.0.12", + "8.0.13", + "8.0.14", + "8.0.15", + "8.0.16", + "8.0.17", + "8.0.18", + "8.0.19", + "8.0.20", + "8.0.21", + "8.0.22", + "8.0.23", + "8.0.24", + "8.0.25", + "8.0.26", "8.0.27", + "8.0.28", + "8.0.29", + "8.0.30", + "8.1.0", + "8.1.1", + "8.1.2", + "8.1.3", + "8.1.4", + "8.1.5", + "8.1.6", + "8.1.7", + "8.1.8", + "8.1.9", + "8.1.10", + "8.1.11", + "8.1.12", + "8.1.13", "8.1.14", - "8.2.1", - "8.0.26", + "8.1.15", + "8.1.16", + "8.1.17", + "8.1.18", + "8.1.19", + "8.1.20", + "8.1.21", + "8.1.22", + "8.1.23", + "8.1.24", + "8.1.25", + "8.1.26", + "8.1.27", + "8.1.28", + "8.1.29", + "8.1.30", + "8.1.31", "8.2.0", - "8.1.13", - "8.0.25", - "8.1.12", - "8.1.11", - "8.0.24", - "8.0.23", - "8.1.10", - "8.0.22", - "8.1.9", - "8.1.8", - "8.0.21", - "8.1.7", - "8.0.20", - "8.0.19", - "8.1.6", - "8.1.5", - "8.0.18", - "8.0.17", - "8.1.4", - "8.1.3", - "8.0.16", - "8.1.2", - "8.0.15", - "8.1.1", - "8.0.14", - "8.1.0", - "8.0.13", - "8.0.12", - "8.0.11", - "8.0.10", - "8.0.9", - "8.0.8", - "8.0.7", - "8.0.6", - "8.0.5", - "8.0.3", - "8.0.2", - "8.0.1", - "8.0.0" + "8.2.1", + "8.2.2", + "8.2.3", + "8.2.4", + "8.2.5", + "8.2.6", + "8.2.7", + "8.2.8", + "8.2.9", + "8.2.10", + "8.2.11", + "8.2.12", + "8.2.13", + "8.2.14", + "8.2.15", + "8.2.16", + "8.2.17", + "8.2.18", + "8.2.19", + "8.2.20", + "8.2.21", + "8.2.22", + "8.2.23", + "8.2.24", + "8.2.25", + "8.2.26", + "8.2.27", + "8.3.0", + "8.3.1", + "8.3.2", + "8.3.3", + "8.3.4", + "8.3.6", + "8.3.7", + "8.3.8", + "8.3.9", + "8.3.10", + "8.3.11", + "8.3.12", + "8.3.13", + "8.3.14", + "8.3.15", + "8.4.1", + "8.4.2" ], "lowest": "5.0.0", "highest": "8.4.2" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______minor_only_______stable___null___minor_only__.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null______minor_only_______stable___null___minor_only__.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" 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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null_____null______stable___null__null_.snap" index 61baced..4254dce 100644 --- "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/CommandTest/_TypistTech_PhpMatrix_Console_Command__\342\206\222_it_success_with_data_set_____stable______null_____null______stable___null__null_.snap" @@ -1,23 +1,23 @@ { "constraint": "@stable", "versions": [ - "5.6", - "5.5", - "5.4", - "5.3", - "5.2", - "5.1", "5.0", - "7.4", - "7.3", - "7.2", - "7.1", + "5.1", + "5.2", + "5.3", + "5.4", + "5.5", + "5.6", "7.0", - "8.4", - "8.3", - "8.2", + "7.1", + "7.2", + "7.3", + "7.4", + "8.0", "8.1", - "8.0" + "8.2", + "8.3", + "8.4" ], "lowest": "5.0", "highest": "8.4" diff --git a/tests/E2E/Console/CommandTest.php b/tests/E2E/Console/CommandTest.php index ce8af57..34b5665 100644 --- a/tests/E2E/Console/CommandTest.php +++ b/tests/E2E/Console/CommandTest.php @@ -76,8 +76,8 @@ $expected = [ 'constraint' => '^7.3 || ~8.1.1', 'versions' => [ - '7.4', '7.3', + '7.4', '8.1', ], 'lowest' => '7.3', diff --git a/tests/Feature/TestCase.php b/tests/Feature/TestCase.php index 7f4c075..902ed73 100644 --- a/tests/Feature/TestCase.php +++ b/tests/Feature/TestCase.php @@ -42,7 +42,7 @@ public function mockMatrix(): array $constraint = '^1.2.3'; $expectedObject = (object) [ 'constraint' => $constraint, - 'versions' => ['1.2.4', '1.2.2', '1.3.3', '1.4.4'], + 'versions' => ['1.2.2', '1.2.4', '1.3.3', '1.4.4'], 'lowest' => '1.2.4', 'highest' => '1.4.4', ]; @@ -53,10 +53,6 @@ public function mockMatrix(): array ->satisfiedBy($constraint) ->andReturn($expectedObject->versions); - $matrix->expects() - ->lowestAndHighest(...$expectedObject->versions) - ->andReturn([$expectedObject->lowest, $expectedObject->highest]); - return [ 'matrix' => $matrix, 'constraint' => $constraint, diff --git a/tests/Unit/MatrixTest.php b/tests/Unit/MatrixTest.php index 02ada91..0da4fc2 100644 --- a/tests/Unit/MatrixTest.php +++ b/tests/Unit/MatrixTest.php @@ -69,34 +69,4 @@ expect($actual)->toBe($expected); })->with('satisfied_by'); }); - - describe('::lowestAndHighest()', static function (): void { - dataset('lowest_and_highest', [ - [['1.2.3'], '1.2.3', '1.2.3'], - [['1.2.3', '1.2.3'], '1.2.3', '1.2.3'], - [['1.2.3', '2.2.3'], '1.2.3', '2.2.3'], - [['1.2.3', '2.2.3', '3.2.3'], '1.2.3', '3.2.3'], - - [['1.2'], '1.2', '1.2'], - [['1.2', '1.2'], '1.2', '1.2'], - [['1.2', '2.2'], '1.2', '2.2'], - [['1.2', '2.2', '3.2'], '1.2', '3.2'], - ]); - - it( - 'returns lowest and highest versions', - function (array $versions, string $expectedLowest, string $expectedHighest): void { - $releases = Mockery::mock(ReleasesInterface::class); - - $matrix = new Matrix($releases); - - shuffle($versions); - - [$actualLowest, $actualHighest] = $matrix->lowestAndHighest(...$versions); - - expect($actualLowest)->toBe($expectedLowest); - expect($actualHighest)->toBe($expectedHighest); - } - )->with('lowest_and_highest'); - }); }); diff --git a/tests/Unit/MinorOnlyMatrixTest.php b/tests/Unit/MinorOnlyMatrixTest.php index 1f09d45..ea2c76b 100644 --- a/tests/Unit/MinorOnlyMatrixTest.php +++ b/tests/Unit/MinorOnlyMatrixTest.php @@ -64,34 +64,4 @@ expect($actual)->toBe($expected); })->with('satisfied_by'); }); - - describe('::lowestAndHighest()', static function (): void { - dataset('lowest_and_highest', [ - [['1.2.3'], '1.2.3', '1.2.3'], - [['1.2.3', '1.2.3'], '1.2.3', '1.2.3'], - [['1.2.3', '2.2.3'], '1.2.3', '2.2.3'], - [['1.2.3', '2.2.3', '3.2.3'], '1.2.3', '3.2.3'], - - [['1.2'], '1.2', '1.2'], - [['1.2', '1.2'], '1.2', '1.2'], - [['1.2', '2.2'], '1.2', '2.2'], - [['1.2', '2.2', '3.2'], '1.2', '3.2'], - ]); - - it( - 'returns lowest and highest versions', - function (array $versions, string $expectedLowest, string $expectedHighest): void { - $releases = Mockery::mock(ReleasesInterface::class); - - $matrix = new MinorOnlyMatrix($releases); - - shuffle($versions); - - [$actualLowest, $actualHighest] = $matrix->lowestAndHighest(...$versions); - - expect($actualLowest)->toBe($expectedLowest); - expect($actualHighest)->toBe($expectedHighest); - } - )->with('lowest_and_highest'); - }); }); diff --git a/tests/Unit/VersionsTest.php b/tests/Unit/VersionsTest.php new file mode 100644 index 0000000..cb18bcf --- /dev/null +++ b/tests/Unit/VersionsTest.php @@ -0,0 +1,92 @@ +toBe($expected); + })->with('sort'); + + it('throws exception when argument is empty', function (): void { + Versions::sort(); + })->throws(UnexpectedValueException::class); + }); + + describe('::lowest()', static function (): void { + dataset('lowest', [ + [['1.2.3'], '1.2.3'], + [['1.2.3', '1.2.3'], '1.2.3'], + [['1.2.3', '2.2.3'], '1.2.3'], + [['1.2.3', '2.2.3', '3.2.3'], '1.2.3'], + + [['1.2'], '1.2'], + [['1.2', '1.2'], '1.2'], + [['1.2', '2.2'], '1.2'], + [['1.2', '2.2', '3.2'], '1.2'], + ]); + + it('returns the lowest version', function (array $versions, string $expected): void { + shuffle($versions); + + $actual = Versions::lowest(...$versions); + + expect($actual)->toBe($expected); + })->with('lowest'); + + it('throws exception when argument is empty', function (): void { + Versions::lowest(); + })->throws(UnexpectedValueException::class); + }); + + describe('::highest()', static function (): void { + dataset('highest', [ + [['1.2.3'], '1.2.3'], + [['1.2.3', '1.2.3'], '1.2.3'], + [['1.2.3', '2.2.3'], '2.2.3'], + [['1.2.3', '2.2.3', '3.2.3'], '3.2.3'], + + [['1.2'], '1.2'], + [['1.2', '1.2'], '1.2'], + [['1.2', '2.2'], '2.2'], + [['1.2', '2.2', '3.2'], '3.2'], + ]); + + it('return the highest version', function (array $versions, string $expected): void { + shuffle($versions); + + $actual = Versions::highest(...$versions); + + expect($actual)->toBe($expected); + })->with('highest'); + + it('throws exception when argument is empty', function (): void { + Versions::highest(); + })->throws(UnexpectedValueException::class); + }); +});