vendor and env first commit
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Fortify\Console;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Laravel\Fortify\FortifyServiceProvider;
|
||||
use Symfony\Component\Console\Attribute\AsCommand;
|
||||
|
||||
#[AsCommand(name: 'fortify:install')]
|
||||
class InstallCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'fortify:install';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Install all of the Fortify resources';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$this->callSilent('vendor:publish', [
|
||||
'--provider' => FortifyServiceProvider::class,
|
||||
]);
|
||||
|
||||
$this->registerFortifyServiceProvider();
|
||||
|
||||
$this->components->info('Fortify scaffolding installed successfully.');
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the Fortify service provider in the application configuration file.
|
||||
*/
|
||||
protected function registerFortifyServiceProvider(): void
|
||||
{
|
||||
if (! method_exists(ServiceProvider::class, 'addProviderToBootstrapFile')) {
|
||||
return;
|
||||
}
|
||||
|
||||
ServiceProvider::addProviderToBootstrapFile(\App\Providers\FortifyServiceProvider::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user