Skip to content

Commit 24c2b3c

Browse files
Rename namespace to HichemTabTech\LaravelFS\Console.
Updated all references to the namespace from `Laravel\Installer\Console` to `HichemTabTech\LaravelFS\Console` across the project. This includes source files, test files, and the composer configuration to reflect the new structure.
1 parent 97110ee commit 24c2b3c

15 files changed

+26
-26
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
],
3636
"autoload": {
3737
"psr-4": {
38-
"Laravel\\Installer\\Console\\": "src/"
38+
"HichemTabTech\\LaravelFS\\Console\\": "src/"
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"Laravel\\Installer\\Console\\Tests\\": "tests/"
43+
"HichemTabTech\\LaravelFS\\Console\\Tests\\": "tests/"
4444
}
4545
},
4646
"config": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Concerns/ConfiguresPrompts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Concerns;
3+
namespace HichemTabTech\LaravelFS\Console\Concerns;
44

55
use Laravel\Prompts\ConfirmPrompt;
66
use Laravel\Prompts\MultiSelectPrompt;

src/Concerns/InteractsWithHerdOrValet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Concerns;
3+
namespace HichemTabTech\LaravelFS\Console\Concerns;
44

55
use Symfony\Component\Process\Exception\ProcessStartFailedException;
66
use Symfony\Component\Process\Process;

src/NewCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Laravel\Installer\Console;
3+
namespace HichemTabTech\LaravelFS\Console;
44

55
use Illuminate\Filesystem\Filesystem;
66
use Illuminate\Support\Composer;

tests/Unit/ApplicationExistenceVerificationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Tests\Unit;
3+
namespace HichemTabTech\LaravelFS\Console\Tests\Unit;
44

55
use Exception;
6-
use Laravel\Installer\Console\NewCommand;
6+
use HichemTabTech\LaravelFS\Console\NewCommand;
77
use RuntimeException;
88

99
// Dummy command that exposes verifyApplicationDoesntExist for testing.

tests/Unit/CustomStarterKitInstallationCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Tests\Unit;
3+
namespace HichemTabTech\LaravelFS\Console\Tests\Unit;
44

5-
use Laravel\Installer\Console\NewCommand;
5+
use HichemTabTech\LaravelFS\Console\NewCommand;
66
use Symfony\Component\Console\Input\ArrayInput;
77
use Symfony\Component\Console\Input\InputDefinition;
88
use Symfony\Component\Console\Input\InputOption;

tests/Unit/CustomStarterKitValidationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Tests\Unit;
3+
namespace HichemTabTech\LaravelFS\Console\Tests\Unit;
44

5-
use Laravel\Installer\Console\NewCommand;
5+
use HichemTabTech\LaravelFS\Console\NewCommand;
66

77
// Dummy command to expose custom starter kit validation logic.
88
class DummyNewCommandCustomStarter extends NewCommand

tests/Unit/DatabaseOptionsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Tests\Unit;
3+
namespace HichemTabTech\LaravelFS\Console\Tests\Unit;
44

5-
use Laravel\Installer\Console\NewCommand;
5+
use HichemTabTech\LaravelFS\Console\NewCommand;
66
use Symfony\Component\Console\Input\ArrayInput;
77
use Symfony\Component\Console\Input\InputDefinition;
88
use Symfony\Component\Console\Input\InputOption;

tests/Unit/DefaultLaravelInstallationCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Laravel\Installer\Console\Tests\Unit;
3+
namespace HichemTabTech\LaravelFS\Console\Tests\Unit;
44

5-
use Laravel\Installer\Console\NewCommand;
5+
use HichemTabTech\LaravelFS\Console\NewCommand;
66
use Symfony\Component\Console\Input\ArrayInput;
77
use Symfony\Component\Console\Input\InputDefinition;
88
use Symfony\Component\Console\Input\InputOption;

0 commit comments

Comments
 (0)