!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/portfolio.picotech.app/public_html/vendor/laravel/sail/src/Console/   drwxr-xr-x
Free 28.61 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     InstallCommand.php (2.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Laravel\Sail\Console;

use 
Illuminate\Console\Command;
use 
RuntimeException;
use 
Symfony\Component\Console\Attribute\AsCommand;
use 
Symfony\Component\Process\Process;

#[
AsCommand(name'sail:install')]
class 
InstallCommand extends Command
{
    use 
Concerns\InteractsWithDockerComposeServices;

    
/**
     * The name and signature of the console command.
     *
     * @var string
     */
    
protected $signature 'sail:install
                {--with= : The services that should be included in the installation}
                {--devcontainer : Create a .devcontainer configuration directory}'
;

    
/**
     * The console command description.
     *
     * @var string
     */
    
protected $description 'Install Laravel Sail\'s default Docker Compose file';

    
/**
     * Execute the console command.
     *
     * @return int|null
     */
    
public function handle()
    {
        if (
$this->option('with')) {
            
$services $this->option('with') == 'none' ? [] : explode(','$this->option('with'));
        } elseif (
$this->option('no-interaction')) {
            
$services $this->defaultServices;
        } else {
            
$services $this->gatherServicesInteractively();
        }

        if (
$invalidServices array_diff($services$this->services)) {
            
$this->components->error('Invalid services ['.implode(','$invalidServices).'].');

            return 
1;
        }

        
$this->buildDockerCompose($services);
        
$this->replaceEnvVariables($services);
        
$this->configurePhpUnit();

        if (
$this->option('devcontainer')) {
            
$this->installDevContainer();
        }

        
$this->prepareInstallation($services);

        
$this->output->writeln('');
        
$this->components->info('Sail scaffolding installed successfully. You may run your Docker containers using Sail\'s "up" command.');

        
$this->output->writeln('<fg=gray>➜</> <options=bold>./vendor/bin/sail up</>');

        if (
in_array('mysql'$services) ||
            
in_array('mariadb'$services) ||
            
in_array('pgsql'$services)) {
            
$this->components->warn('A database service was installed. Run "artisan migrate" to prepare your database:');

            
$this->output->writeln('<fg=gray>➜</> <options=bold>./vendor/bin/sail artisan migrate</>');
        }

        
$this->output->writeln('');
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]--