diff --git a/.vortex/installer/composer.json b/.vortex/installer/composer.json index 0f2c9bd6e..df6ca55c6 100644 --- a/.vortex/installer/composer.json +++ b/.vortex/installer/composer.json @@ -43,12 +43,12 @@ }, "autoload": { "psr-4": { - "DrevOps\\Installer\\": "src/" + "DrevOps\\VortexInstaller\\": "src/" } }, "autoload-dev": { "psr-4": { - "DrevOps\\Installer\\Tests\\": "tests", + "DrevOps\\VortexInstaller\\Tests\\": "tests", "AlexSkrypnyk\\File\\Tests\\": "vendor/alexskrypnyk/file/tests" }, "classmap": [ diff --git a/.vortex/installer/composer.lock b/.vortex/installer/composer.lock index 3a6cc0be0..eca4bfe99 100644 --- a/.vortex/installer/composer.lock +++ b/.vortex/installer/composer.lock @@ -1960,16 +1960,16 @@ }, { "name": "justinrainbow/json-schema", - "version": "6.4.1", + "version": "6.4.2", "source": { "type": "git", "url": "https://github.com/jsonrainbow/json-schema.git", - "reference": "35d262c94959571e8736db1e5c9bc36ab94ae900" + "reference": "ce1fd2d47799bb60668643bc6220f6278a4c1d02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/35d262c94959571e8736db1e5c9bc36ab94ae900", - "reference": "35d262c94959571e8736db1e5c9bc36ab94ae900", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/ce1fd2d47799bb60668643bc6220f6278a4c1d02", + "reference": "ce1fd2d47799bb60668643bc6220f6278a4c1d02", "shasum": "" }, "require": { @@ -2029,9 +2029,9 @@ ], "support": { "issues": "https://github.com/jsonrainbow/json-schema/issues", - "source": "https://github.com/jsonrainbow/json-schema/tree/6.4.1" + "source": "https://github.com/jsonrainbow/json-schema/tree/6.4.2" }, - "time": "2025-04-04T13:08:07+00:00" + "time": "2025-06-03T18:27:04+00:00" }, { "name": "laravel/serializable-closure", diff --git a/.vortex/installer/src/Command/InstallCommand.php b/.vortex/installer/src/Command/InstallCommand.php index 5e161a122..a68cb3ac8 100644 --- a/.vortex/installer/src/Command/InstallCommand.php +++ b/.vortex/installer/src/Command/InstallCommand.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\Installer\Command; - -use DrevOps\Installer\Prompts\PromptManager; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Downloader; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; -use DrevOps\Installer\Utils\Tui; +namespace DrevOps\VortexInstaller\Command; + +use DrevOps\VortexInstaller\Prompts\PromptManager; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Downloader; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexInstaller\Utils\Tui; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; @@ -21,7 +21,7 @@ * * Install command. * - * @package DrevOps\Installer\Command + * @package DrevOps\VortexInstaller\Command */ class InstallCommand extends Command { diff --git a/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php b/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php index e834eb86c..c6a8c5882 100644 --- a/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php +++ b/.vortex/installer/src/Prompts/Handlers/AbstractHandler.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Converter; abstract class AbstractHandler implements HandlerInterface { diff --git a/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php b/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php index fb2b01f95..9acabf4ad 100644 --- a/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php +++ b/.vortex/installer/src/Prompts/Handlers/AssignAuthorPr.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; class AssignAuthorPr extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CiProvider.php b/.vortex/installer/src/Prompts/Handlers/CiProvider.php index a315cd8c2..a2954870d 100644 --- a/.vortex/installer/src/Prompts/Handlers/CiProvider.php +++ b/.vortex/installer/src/Prompts/Handlers/CiProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; class CiProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/CodeProvider.php b/.vortex/installer/src/Prompts/Handlers/CodeProvider.php index 8f0f690ab..e254e354a 100644 --- a/.vortex/installer/src/Prompts/Handlers/CodeProvider.php +++ b/.vortex/installer/src/Prompts/Handlers/CodeProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; class CodeProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DatabaseDownloadSource.php b/.vortex/installer/src/Prompts/Handlers/DatabaseDownloadSource.php index 9084090dd..30c041c9b 100644 --- a/.vortex/installer/src/Prompts/Handlers/DatabaseDownloadSource.php +++ b/.vortex/installer/src/Prompts/Handlers/DatabaseDownloadSource.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class DatabaseDownloadSource extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php b/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php index e780f582e..65a7b0972 100644 --- a/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php +++ b/.vortex/installer/src/Prompts/Handlers/DatabaseImage.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class DatabaseImage extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php b/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php index 03f50423b..f4e0bdf2f 100644 --- a/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php +++ b/.vortex/installer/src/Prompts/Handlers/DependencyUpdatesProvider.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; class DependencyUpdatesProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/DeployType.php b/.vortex/installer/src/Prompts/Handlers/DeployType.php index d61c88ca1..6fa6391da 100644 --- a/.vortex/installer/src/Prompts/Handlers/DeployType.php +++ b/.vortex/installer/src/Prompts/Handlers/DeployType.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class DeployType extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Domain.php b/.vortex/installer/src/Prompts/Handlers/Domain.php index 9c92914d7..d857b149d 100644 --- a/.vortex/installer/src/Prompts/Handlers/Domain.php +++ b/.vortex/installer/src/Prompts/Handlers/Domain.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class Domain extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/GithubRepo.php b/.vortex/installer/src/Prompts/Handlers/GithubRepo.php index a10fc7160..48568cb27 100644 --- a/.vortex/installer/src/Prompts/Handlers/GithubRepo.php +++ b/.vortex/installer/src/Prompts/Handlers/GithubRepo.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Git; +use DrevOps\VortexInstaller\Utils\Git; class GithubRepo extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/GithubToken.php b/.vortex/installer/src/Prompts/Handlers/GithubToken.php index a0e99b46a..679d8bc67 100644 --- a/.vortex/installer/src/Prompts/Handlers/GithubToken.php +++ b/.vortex/installer/src/Prompts/Handlers/GithubToken.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; +use DrevOps\VortexInstaller\Utils\Env; class GithubToken extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php b/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php index 6f1a08f5b..c7a07fc46 100644 --- a/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php +++ b/.vortex/installer/src/Prompts/Handlers/HandlerInterface.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; /** * Interface HandlerInterface. * * The interface for the prompt handlers. * - * @package DrevOps\Installer\Prompts\Handlers + * @package DrevOps\VortexInstaller\Prompts\Handlers */ interface HandlerInterface { diff --git a/.vortex/installer/src/Prompts/Handlers/HostingProvider.php b/.vortex/installer/src/Prompts/Handlers/HostingProvider.php index 246eb426f..7e5eafe0f 100644 --- a/.vortex/installer/src/Prompts/Handlers/HostingProvider.php +++ b/.vortex/installer/src/Prompts/Handlers/HostingProvider.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class HostingProvider extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Internal.php b/.vortex/installer/src/Prompts/Handlers/Internal.php index a14809b85..70916acbd 100644 --- a/.vortex/installer/src/Prompts/Handlers/Internal.php +++ b/.vortex/installer/src/Prompts/Handlers/Internal.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; use AlexSkrypnyk\File\ExtendedSplFileInfo; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class Internal extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php b/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php index 92f48e4f6..f18925632 100644 --- a/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php +++ b/.vortex/installer/src/Prompts/Handlers/LabelMergeConflictsPr.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; class LabelMergeConflictsPr extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/MachineName.php b/.vortex/installer/src/Prompts/Handlers/MachineName.php index edc06b3f7..55624b846 100644 --- a/.vortex/installer/src/Prompts/Handlers/MachineName.php +++ b/.vortex/installer/src/Prompts/Handlers/MachineName.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Composer; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Composer; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\File; class MachineName extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php b/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php index 46229cd01..08b2e2753 100644 --- a/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php +++ b/.vortex/installer/src/Prompts/Handlers/ModulePrefix.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\File; class ModulePrefix extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Name.php b/.vortex/installer/src/Prompts/Handlers/Name.php index 9786d9356..bc3340ad5 100644 --- a/.vortex/installer/src/Prompts/Handlers/Name.php +++ b/.vortex/installer/src/Prompts/Handlers/Name.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Composer; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Composer; +use DrevOps\VortexInstaller\Utils\File; class Name extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Org.php b/.vortex/installer/src/Prompts/Handlers/Org.php index d344ffe01..b0ca0b72a 100644 --- a/.vortex/installer/src/Prompts/Handlers/Org.php +++ b/.vortex/installer/src/Prompts/Handlers/Org.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Composer; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Composer; +use DrevOps\VortexInstaller\Utils\File; class Org extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php b/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php index 29c2ae077..cdee3318b 100644 --- a/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php +++ b/.vortex/installer/src/Prompts/Handlers/OrgMachineName.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Composer; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Composer; +use DrevOps\VortexInstaller\Utils\File; class OrgMachineName extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/PreserveDocsOnboarding.php b/.vortex/installer/src/Prompts/Handlers/PreserveDocsOnboarding.php index e720391d5..aabee43d2 100644 --- a/.vortex/installer/src/Prompts/Handlers/PreserveDocsOnboarding.php +++ b/.vortex/installer/src/Prompts/Handlers/PreserveDocsOnboarding.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; class PreserveDocsOnboarding extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php b/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php index b0d83ab6c..e8f3435aa 100644 --- a/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php +++ b/.vortex/installer/src/Prompts/Handlers/PreserveDocsProject.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; class PreserveDocsProject extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Profile.php b/.vortex/installer/src/Prompts/Handlers/Profile.php index 3bbf90707..73958e42e 100644 --- a/.vortex/installer/src/Prompts/Handlers/Profile.php +++ b/.vortex/installer/src/Prompts/Handlers/Profile.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class Profile extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ProvisionType.php b/.vortex/installer/src/Prompts/Handlers/ProvisionType.php index f8ed4ca5f..602449c8a 100644 --- a/.vortex/installer/src/Prompts/Handlers/ProvisionType.php +++ b/.vortex/installer/src/Prompts/Handlers/ProvisionType.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class ProvisionType extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Services.php b/.vortex/installer/src/Prompts/Handlers/Services.php index 326242096..cdd65f1a0 100644 --- a/.vortex/installer/src/Prompts/Handlers/Services.php +++ b/.vortex/installer/src/Prompts/Handlers/Services.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; use Symfony\Component\Yaml\Yaml; class Services extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Theme.php b/.vortex/installer/src/Prompts/Handlers/Theme.php index 1f77dbff1..a0c2bb72e 100644 --- a/.vortex/installer/src/Prompts/Handlers/Theme.php +++ b/.vortex/installer/src/Prompts/Handlers/Theme.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class Theme extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/ThemeRunner.php b/.vortex/installer/src/Prompts/Handlers/ThemeRunner.php index c95cb453a..8b059e1a0 100644 --- a/.vortex/installer/src/Prompts/Handlers/ThemeRunner.php +++ b/.vortex/installer/src/Prompts/Handlers/ThemeRunner.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; class ThemeRunner extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/Handlers/Webroot.php b/.vortex/installer/src/Prompts/Handlers/Webroot.php index 127dcfb1c..cc0559974 100644 --- a/.vortex/installer/src/Prompts/Handlers/Webroot.php +++ b/.vortex/installer/src/Prompts/Handlers/Webroot.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts\Handlers; +namespace DrevOps\VortexInstaller\Prompts\Handlers; -use DrevOps\Installer\Utils\Composer; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\Composer; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; class Webroot extends AbstractHandler { diff --git a/.vortex/installer/src/Prompts/PromptManager.php b/.vortex/installer/src/Prompts/PromptManager.php index 6eaab4035..fa65eab55 100644 --- a/.vortex/installer/src/Prompts/PromptManager.php +++ b/.vortex/installer/src/Prompts/PromptManager.php @@ -2,41 +2,41 @@ declare(strict_types=1); -namespace DrevOps\Installer\Prompts; - -use DrevOps\Installer\Prompts\Handlers\AbstractHandler; -use DrevOps\Installer\Prompts\Handlers\AssignAuthorPr; -use DrevOps\Installer\Prompts\Handlers\CiProvider; -use DrevOps\Installer\Prompts\Handlers\CodeProvider; -use DrevOps\Installer\Prompts\Handlers\DatabaseDownloadSource; -use DrevOps\Installer\Prompts\Handlers\DatabaseImage; -use DrevOps\Installer\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\Installer\Prompts\Handlers\DeployType; -use DrevOps\Installer\Prompts\Handlers\Domain; -use DrevOps\Installer\Prompts\Handlers\GithubRepo; -use DrevOps\Installer\Prompts\Handlers\GithubToken; -use DrevOps\Installer\Prompts\Handlers\HandlerInterface; -use DrevOps\Installer\Prompts\Handlers\HostingProvider; -use DrevOps\Installer\Prompts\Handlers\Internal; -use DrevOps\Installer\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\Installer\Prompts\Handlers\MachineName; -use DrevOps\Installer\Prompts\Handlers\ModulePrefix; -use DrevOps\Installer\Prompts\Handlers\Name; -use DrevOps\Installer\Prompts\Handlers\Org; -use DrevOps\Installer\Prompts\Handlers\OrgMachineName; -use DrevOps\Installer\Prompts\Handlers\PreserveDocsOnboarding; -use DrevOps\Installer\Prompts\Handlers\PreserveDocsProject; -use DrevOps\Installer\Prompts\Handlers\Profile; -use DrevOps\Installer\Prompts\Handlers\ProvisionType; -use DrevOps\Installer\Prompts\Handlers\Services; -use DrevOps\Installer\Prompts\Handlers\Theme; -use DrevOps\Installer\Prompts\Handlers\ThemeRunner; -use DrevOps\Installer\Prompts\Handlers\Webroot; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\Tui; -use DrevOps\Installer\Utils\Validator; +namespace DrevOps\VortexInstaller\Prompts; + +use DrevOps\VortexInstaller\Prompts\Handlers\AbstractHandler; +use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseDownloadSource; +use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\DeployType; +use DrevOps\VortexInstaller\Prompts\Handlers\Domain; +use DrevOps\VortexInstaller\Prompts\Handlers\GithubRepo; +use DrevOps\VortexInstaller\Prompts\Handlers\GithubToken; +use DrevOps\VortexInstaller\Prompts\Handlers\HandlerInterface; +use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\Internal; +use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; +use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexInstaller\Prompts\Handlers\Name; +use DrevOps\VortexInstaller\Prompts\Handlers\Org; +use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsOnboarding; +use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexInstaller\Prompts\Handlers\Profile; +use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; +use DrevOps\VortexInstaller\Prompts\Handlers\Services; +use DrevOps\VortexInstaller\Prompts\Handlers\Theme; +use DrevOps\VortexInstaller\Prompts\Handlers\ThemeRunner; +use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\Tui; +use DrevOps\VortexInstaller\Utils\Validator; use Symfony\Component\Console\Output\OutputInterface; use function Laravel\Prompts\confirm; use function Laravel\Prompts\form; @@ -51,7 +51,7 @@ * * Centralised place for providing prompts and their processing. * - * @package DrevOps\Installer + * @package DrevOps\VortexInstaller */ class PromptManager { @@ -63,14 +63,14 @@ class PromptManager { /** * Array of handlers. * - * @var array + * @var array */ protected array $handlers = []; /** * PromptManager constructor. * - * @param \DrevOps\Installer\Utils\Config $config + * @param \DrevOps\VortexInstaller\Utils\Config $config * The installer config. */ public function __construct( @@ -660,7 +660,7 @@ protected function initHandlers(): void { $classes = []; foreach ($handler_files as $file) { - $class = 'DrevOps\\Installer\\Prompts\\Handlers\\' . basename($file, '.php'); + $class = 'DrevOps\\VortexInstaller\\Prompts\\Handlers\\' . basename($file, '.php'); if (!class_exists($class) || !is_subclass_of($class, HandlerInterface::class) || $class === AbstractHandler::class) { continue; diff --git a/.vortex/installer/src/Utils/Composer.php b/.vortex/installer/src/Utils/Composer.php index 89cc2a8a4..304877680 100644 --- a/.vortex/installer/src/Utils/Composer.php +++ b/.vortex/installer/src/Utils/Composer.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; class Composer { diff --git a/.vortex/installer/src/Utils/Config.php b/.vortex/installer/src/Utils/Config.php index b5e589aed..f151dcfa2 100644 --- a/.vortex/installer/src/Utils/Config.php +++ b/.vortex/installer/src/Utils/Config.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; /** * Installer configuration. * * Installer config is a config of this installer script. * - * @package DrevOps\Installer + * @package DrevOps\VortexInstaller */ final class Config { diff --git a/.vortex/installer/src/Utils/Converter.php b/.vortex/installer/src/Utils/Converter.php index a864b3e13..fc8c06abc 100644 --- a/.vortex/installer/src/Utils/Converter.php +++ b/.vortex/installer/src/Utils/Converter.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; use AlexSkrypnyk\Str2Name\Str2Name; diff --git a/.vortex/installer/src/Utils/Downloader.php b/.vortex/installer/src/Utils/Downloader.php index 7b49569d8..526f1a462 100644 --- a/.vortex/installer/src/Utils/Downloader.php +++ b/.vortex/installer/src/Utils/Downloader.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; /** * Download files from a local or remote Git repository using archive. diff --git a/.vortex/installer/src/Utils/Env.php b/.vortex/installer/src/Utils/Env.php index b5e898763..54b2e3cba 100644 --- a/.vortex/installer/src/Utils/Env.php +++ b/.vortex/installer/src/Utils/Env.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; class Env { diff --git a/.vortex/installer/src/Utils/File.php b/.vortex/installer/src/Utils/File.php index b79128141..3fbcc571b 100644 --- a/.vortex/installer/src/Utils/File.php +++ b/.vortex/installer/src/Utils/File.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; use AlexSkrypnyk\File\ExtendedSplFileInfo; use AlexSkrypnyk\File\File as UpstreamFile; diff --git a/.vortex/installer/src/Utils/Git.php b/.vortex/installer/src/Utils/Git.php index 2f2bad351..826cdcd66 100644 --- a/.vortex/installer/src/Utils/Git.php +++ b/.vortex/installer/src/Utils/Git.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; use CzProject\GitPhp\Git as GitWrapper; use CzProject\GitPhp\GitRepository; diff --git a/.vortex/installer/src/Utils/Strings.php b/.vortex/installer/src/Utils/Strings.php index d7726e024..869d40170 100644 --- a/.vortex/installer/src/Utils/Strings.php +++ b/.vortex/installer/src/Utils/Strings.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; class Strings { diff --git a/.vortex/installer/src/Utils/Tui.php b/.vortex/installer/src/Utils/Tui.php index e580c847e..e2418807f 100644 --- a/.vortex/installer/src/Utils/Tui.php +++ b/.vortex/installer/src/Utils/Tui.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; use Laravel\Prompts\Prompt; use Laravel\Prompts\Terminal; diff --git a/.vortex/installer/src/Utils/Validator.php b/.vortex/installer/src/Utils/Validator.php index 685c9e6f5..1cdc3a0ef 100644 --- a/.vortex/installer/src/Utils/Validator.php +++ b/.vortex/installer/src/Utils/Validator.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace DrevOps\Installer\Utils; +namespace DrevOps\VortexInstaller\Utils; /** * Converter. * * Convert strings to different formats. * - * @package DrevOps\Installer + * @package DrevOps\VortexInstaller */ class Validator { diff --git a/.vortex/installer/src/app.php b/.vortex/installer/src/app.php index e98cd332f..901e19ec1 100644 --- a/.vortex/installer/src/app.php +++ b/.vortex/installer/src/app.php @@ -7,7 +7,7 @@ declare(strict_types=1); -use DrevOps\Installer\Command\InstallCommand; +use DrevOps\VortexInstaller\Command\InstallCommand; use Symfony\Component\Console\Application; $application = new Application('Vortex CLI installer', '@git-tag-ci@'); diff --git a/.vortex/installer/tests/Functional/FunctionalTestCase.php b/.vortex/installer/tests/Functional/FunctionalTestCase.php index cf3c1520d..7471a2c3c 100644 --- a/.vortex/installer/tests/Functional/FunctionalTestCase.php +++ b/.vortex/installer/tests/Functional/FunctionalTestCase.php @@ -2,17 +2,17 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Functional; +namespace DrevOps\VortexInstaller\Tests\Functional; use AlexSkrypnyk\File\Internal\Index; use AlexSkrypnyk\PhpunitHelpers\Traits\ApplicationTrait; use AlexSkrypnyk\PhpunitHelpers\Traits\TuiTrait as UpstreamTuiTrait; -use DrevOps\Installer\Command\InstallCommand; -use DrevOps\Installer\Tests\Traits\TuiTrait; -use DrevOps\Installer\Tests\Unit\UnitTestCase; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Command\InstallCommand; +use DrevOps\VortexInstaller\Tests\Traits\TuiTrait; +use DrevOps\VortexInstaller\Tests\Unit\UnitTestCase; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; use PHPUnit\Framework\TestStatus\Error; use PHPUnit\Framework\TestStatus\Failure; diff --git a/.vortex/installer/tests/Functional/InstallTest.php b/.vortex/installer/tests/Functional/InstallTest.php index 9792507ed..6d578f94e 100644 --- a/.vortex/installer/tests/Functional/InstallTest.php +++ b/.vortex/installer/tests/Functional/InstallTest.php @@ -2,43 +2,43 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Functional; - -use DrevOps\Installer\Command\InstallCommand; -use DrevOps\Installer\Prompts\Handlers\AssignAuthorPr; -use DrevOps\Installer\Prompts\Handlers\CiProvider; -use DrevOps\Installer\Prompts\Handlers\CodeProvider; -use DrevOps\Installer\Prompts\Handlers\DatabaseDownloadSource; -use DrevOps\Installer\Prompts\Handlers\DatabaseImage; -use DrevOps\Installer\Prompts\Handlers\DependencyUpdatesProvider; -use DrevOps\Installer\Prompts\Handlers\DeployType; -use DrevOps\Installer\Prompts\Handlers\Domain; -use DrevOps\Installer\Prompts\Handlers\GithubRepo; -use DrevOps\Installer\Prompts\Handlers\GithubToken; -use DrevOps\Installer\Prompts\Handlers\HostingProvider; -use DrevOps\Installer\Prompts\Handlers\Internal; -use DrevOps\Installer\Prompts\Handlers\LabelMergeConflictsPr; -use DrevOps\Installer\Prompts\Handlers\MachineName; -use DrevOps\Installer\Prompts\Handlers\ModulePrefix; -use DrevOps\Installer\Prompts\Handlers\Name; -use DrevOps\Installer\Prompts\Handlers\Org; -use DrevOps\Installer\Prompts\Handlers\OrgMachineName; -use DrevOps\Installer\Prompts\Handlers\PreserveDocsOnboarding; -use DrevOps\Installer\Prompts\Handlers\PreserveDocsProject; -use DrevOps\Installer\Prompts\Handlers\Profile; -use DrevOps\Installer\Prompts\Handlers\ProvisionType; -use DrevOps\Installer\Prompts\Handlers\Services; -use DrevOps\Installer\Prompts\Handlers\Theme; -use DrevOps\Installer\Prompts\Handlers\ThemeRunner; -use DrevOps\Installer\Prompts\Handlers\Webroot; -use DrevOps\Installer\Prompts\PromptManager; -use DrevOps\Installer\Utils\Config; -use DrevOps\Installer\Utils\Converter; -use DrevOps\Installer\Utils\Downloader; -use DrevOps\Installer\Utils\Env; -use DrevOps\Installer\Utils\File; -use DrevOps\Installer\Utils\Git; -use DrevOps\Installer\Utils\Tui; +namespace DrevOps\VortexInstaller\Tests\Functional; + +use DrevOps\VortexInstaller\Command\InstallCommand; +use DrevOps\VortexInstaller\Prompts\Handlers\AssignAuthorPr; +use DrevOps\VortexInstaller\Prompts\Handlers\CiProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\CodeProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseDownloadSource; +use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage; +use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\DeployType; +use DrevOps\VortexInstaller\Prompts\Handlers\Domain; +use DrevOps\VortexInstaller\Prompts\Handlers\GithubRepo; +use DrevOps\VortexInstaller\Prompts\Handlers\GithubToken; +use DrevOps\VortexInstaller\Prompts\Handlers\HostingProvider; +use DrevOps\VortexInstaller\Prompts\Handlers\Internal; +use DrevOps\VortexInstaller\Prompts\Handlers\LabelMergeConflictsPr; +use DrevOps\VortexInstaller\Prompts\Handlers\MachineName; +use DrevOps\VortexInstaller\Prompts\Handlers\ModulePrefix; +use DrevOps\VortexInstaller\Prompts\Handlers\Name; +use DrevOps\VortexInstaller\Prompts\Handlers\Org; +use DrevOps\VortexInstaller\Prompts\Handlers\OrgMachineName; +use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsOnboarding; +use DrevOps\VortexInstaller\Prompts\Handlers\PreserveDocsProject; +use DrevOps\VortexInstaller\Prompts\Handlers\Profile; +use DrevOps\VortexInstaller\Prompts\Handlers\ProvisionType; +use DrevOps\VortexInstaller\Prompts\Handlers\Services; +use DrevOps\VortexInstaller\Prompts\Handlers\Theme; +use DrevOps\VortexInstaller\Prompts\Handlers\ThemeRunner; +use DrevOps\VortexInstaller\Prompts\Handlers\Webroot; +use DrevOps\VortexInstaller\Prompts\PromptManager; +use DrevOps\VortexInstaller\Utils\Config; +use DrevOps\VortexInstaller\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Downloader; +use DrevOps\VortexInstaller\Utils\Env; +use DrevOps\VortexInstaller\Utils\File; +use DrevOps\VortexInstaller\Utils\Git; +use DrevOps\VortexInstaller\Utils\Tui; use Laravel\SerializableClosure\SerializableClosure; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; diff --git a/.vortex/installer/tests/Traits/TuiTrait.php b/.vortex/installer/tests/Traits/TuiTrait.php index ee5d2e22d..8cd2be81f 100644 --- a/.vortex/installer/tests/Traits/TuiTrait.php +++ b/.vortex/installer/tests/Traits/TuiTrait.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Traits; +namespace DrevOps\VortexInstaller\Tests\Traits; -use DrevOps\Installer\Utils\Tui; +use DrevOps\VortexInstaller\Utils\Tui; use Laravel\Prompts\Output\BufferedConsoleOutput; use Laravel\Prompts\Prompt; diff --git a/.vortex/installer/tests/Unit/ConverterTest.php b/.vortex/installer/tests/Unit/ConverterTest.php index ba7e36ee8..f42a2ed68 100644 --- a/.vortex/installer/tests/Unit/ConverterTest.php +++ b/.vortex/installer/tests/Unit/ConverterTest.php @@ -2,11 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Unit; +namespace DrevOps\VortexInstaller\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\Installer\Utils\Converter; +use DrevOps\VortexInstaller\Utils\Converter; /** * Tests for the Converter class. diff --git a/.vortex/installer/tests/Unit/EnvTest.php b/.vortex/installer/tests/Unit/EnvTest.php index 40b90cf45..ae4f8b341 100644 --- a/.vortex/installer/tests/Unit/EnvTest.php +++ b/.vortex/installer/tests/Unit/EnvTest.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Unit; +namespace DrevOps\VortexInstaller\Tests\Unit; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses; use PHPUnit\Framework\Attributes\DataProvider; -use DrevOps\Installer\Utils\Env; +use DrevOps\VortexInstaller\Utils\Env; /** * Class InstallerDotEnvTest. diff --git a/.vortex/installer/tests/Unit/FileTest.php b/.vortex/installer/tests/Unit/FileTest.php index 91764e500..5ce516977 100644 --- a/.vortex/installer/tests/Unit/FileTest.php +++ b/.vortex/installer/tests/Unit/FileTest.php @@ -2,9 +2,9 @@ declare(strict_types=1); -namespace DrevOps\Installer\Tests\Unit; +namespace DrevOps\VortexInstaller\Tests\Unit; -use DrevOps\Installer\Utils\File; +use DrevOps\VortexInstaller\Utils\File; use PHPUnit\Framework\Attributes\CoversClass; use PHPUnit\Framework\Attributes\DataProvider; @@ -69,9 +69,9 @@ public static function dataProviderCollapseYamlEmptyLinesInLiteralBlocks(): arra 'literal block with multiple empty lines after pipe' => [ << [ <<