Update namespace
This commit is contained in:
@@ -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"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Zura\HostingerDeploy\Commands;
|
||||
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Zura\HostingerDeploy\Commands;
|
||||
namespace TheCodeholic\LaravelHostingerDeploy\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Facades\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
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Zura\HostingerDeploy\Services;
|
||||
namespace TheCodeholic\LaravelHostingerDeploy\Services;
|
||||
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Exception;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Zura\HostingerDeploy\Services;
|
||||
namespace TheCodeholic\LaravelHostingerDeploy\Services;
|
||||
|
||||
use Illuminate\Support\Facades\Process;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Zura\HostingerDeploy\Services;
|
||||
namespace TheCodeholic\LaravelHostingerDeploy\Services;
|
||||
|
||||
use Illuminate\Support\Facades\Process;
|
||||
use Illuminate\Process\Exceptions\ProcessFailedException;
|
||||
|
||||
Reference in New Issue
Block a user