Update namespace

This commit is contained in:
Zura Sekhniashvili
2025-10-31 01:50:34 +04:00
parent 48d03f1a72
commit effc7d944e
11 changed files with 30 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "zura/laravel-hostinger-deploy",
"name": "thecodeholic/laravel-hostinger-deploy",
"description": "Laravel package for automated Hostinger deployment with GitHub Actions support",
"type": "library",
"license": "MIT",
@@ -12,8 +12,8 @@
],
"authors": [
{
"name": "Zura",
"email": "zura@example.com"
"name": "Zura Sekhniashvili",
"email": "zura@thecodeholic.com"
}
],
"require": {
@@ -29,18 +29,18 @@
},
"autoload": {
"psr-4": {
"Zura\\HostingerDeploy\\": "src/"
"TheCodeholic\\LaravelHostingerDeploy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zura\\HostingerDeploy\\Tests\\": "tests/"
"TheCodeholic\\LaravelHostingerDeploy\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Zura\\HostingerDeploy\\HostingerDeployServiceProvider"
"TheCodeholic\\LaravelHostingerDeploy\\HostingerDeployServiceProvider"
]
}
},

View File

@@ -1,10 +1,10 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;
use Zura\HostingerDeploy\Services\SshConnectionService;
use Zura\HostingerDeploy\Services\GitHubActionsService;
use TheCodeholic\LaravelHostingerDeploy\Services\SshConnectionService;
use TheCodeholic\LaravelHostingerDeploy\Services\GitHubActionsService;
class AutoDeployCommand extends Command
{

View File

@@ -1,6 +1,6 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;

View File

@@ -1,10 +1,10 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;
use Zura\HostingerDeploy\Services\SshConnectionService;
use Zura\HostingerDeploy\Services\GitHubActionsService;
use TheCodeholic\LaravelHostingerDeploy\Services\SshConnectionService;
use TheCodeholic\LaravelHostingerDeploy\Services\GitHubActionsService;
class DeploySharedCommand extends Command
{

View File

@@ -1,10 +1,10 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Zura\HostingerDeploy\Services\GitHubActionsService;
use TheCodeholic\LaravelHostingerDeploy\Services\GitHubActionsService;
class PublishWorkflowCommand extends Command
{

View File

@@ -1,12 +1,12 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Zura\HostingerDeploy\Services\SshConnectionService;
use Zura\HostingerDeploy\Services\GitHubActionsService;
use Zura\HostingerDeploy\Services\GitHubAPIService;
use TheCodeholic\LaravelHostingerDeploy\Services\SshConnectionService;
use TheCodeholic\LaravelHostingerDeploy\Services\GitHubActionsService;
use TheCodeholic\LaravelHostingerDeploy\Services\GitHubAPIService;
class SetupAutomatedDeployCommand extends Command
{

View File

@@ -1,6 +1,6 @@
<?php
namespace Zura\HostingerDeploy\Commands;
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;

View File

@@ -1,14 +1,14 @@
<?php
namespace Zura\HostingerDeploy;
namespace TheCodeholic\LaravelHostingerDeploy;
use Illuminate\Support\ServiceProvider;
use Zura\HostingerDeploy\Commands\DeploySharedCommand;
use Zura\HostingerDeploy\Commands\PublishWorkflowCommand;
use Zura\HostingerDeploy\Commands\AutoDeployCommand;
use Zura\HostingerDeploy\Commands\SetupEnvCommand;
use Zura\HostingerDeploy\Commands\SetupAutomatedDeployCommand;
use Zura\HostingerDeploy\Commands\DeployAndSetupAutomatedCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\DeploySharedCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\PublishWorkflowCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\AutoDeployCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\SetupEnvCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\SetupAutomatedDeployCommand;
use TheCodeholic\LaravelHostingerDeploy\Commands\DeployAndSetupAutomatedCommand;
class HostingerDeployServiceProvider extends ServiceProvider
{

View File

@@ -1,6 +1,6 @@
<?php
namespace Zura\HostingerDeploy\Services;
namespace TheCodeholic\LaravelHostingerDeploy\Services;
use Illuminate\Support\Facades\Http;
use Exception;

View File

@@ -1,6 +1,6 @@
<?php
namespace Zura\HostingerDeploy\Services;
namespace TheCodeholic\LaravelHostingerDeploy\Services;
use Illuminate\Support\Facades\Process;

View File

@@ -1,6 +1,6 @@
<?php
namespace Zura\HostingerDeploy\Services;
namespace TheCodeholic\LaravelHostingerDeploy\Services;
use Illuminate\Support\Facades\Process;
use Illuminate\Process\Exceptions\ProcessFailedException;