404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.14.249.191: ~ $
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Command
    |--------------------------------------------------------------------------
    |
    | Laravel Zero will always run the command specified below when no command name is
    | provided. Consider update the default command for single command applications.
    | You cannot pass arguments to the default command because they are ignored.
    |
    */

    'default' => \App\Commands\DefaultCommand::class,

    /*
    |--------------------------------------------------------------------------
    | Commands Paths
    |--------------------------------------------------------------------------
    |
    | This value determines the "paths" that should be loaded by the console's
    | kernel. Foreach "path" present on the array provided below the kernel
    | will extract all "Illuminate\Console\Command" based class commands.
    |
    */

    'paths' => [app_path('Commands')],

    /*
    |--------------------------------------------------------------------------
    | Added Commands
    |--------------------------------------------------------------------------
    |
    | You may want to include a single command class without having to load an
    | entire folder. Here you can specify which commands should be added to
    | your list of commands. The console's kernel will try to load them.
    |
    */

    'add' => [
        // ..
    ],

    /*
    |--------------------------------------------------------------------------
    | Hidden Commands
    |--------------------------------------------------------------------------
    |
    | Your application commands will always be visible on the application list
    | of commands. But you can still make them "hidden" specifying an array
    | of commands below. All "hidden" commands can still be run/executed.
    |
    */

    'hidden' => [
        LaravelZero\Framework\Commands\BuildCommand::class,
    ],

    /*
    |--------------------------------------------------------------------------
    | Removed Commands
    |--------------------------------------------------------------------------
    |
    | Do you have a service provider that loads a list of commands that
    | you don't need? No problem. Laravel Zero allows you to specify
    | below a list of commands that you don't to see in your app.
    |
    */

    'remove' => [
        // Illuminate...
        Illuminate\Console\Scheduling\ScheduleRunCommand::class,
        Illuminate\Console\Scheduling\ScheduleFinishCommand::class,

        // LaravelZero...
        LaravelZero\Framework\Commands\InstallCommand::class,
        LaravelZero\Framework\Commands\MakeCommand::class,
        LaravelZero\Framework\Commands\RenameCommand::class,
        LaravelZero\Framework\Commands\TestMakeCommand::class,
        LaravelZero\Framework\Commands\StubPublishCommand::class,

        // NunoMaduro...
        NunoMaduro\Collision\Adapters\Laravel\Commands\TestCommand::class,
        NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,

        // Symfony...
        Symfony\Component\Console\Command\DumpCompletionCommand::class,
        Symfony\Component\Console\Command\HelpCommand::class,

        // Pest...
        Pest\Laravel\Commands\PestDatasetCommand::class,
        Pest\Laravel\Commands\PestInstallCommand::class,
        Pest\Laravel\Commands\PestTestCommand::class,
    ],

];

Filemanager

Name Type Size Permission Actions
app.php File 2.18 KB 0644
commands.php File 3.47 KB 0644
view.php File 1.02 KB 0644