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

Software: Apache/2.4.68 (Linux) PHP/7.4.33. PHP/7.4.33 

uname -a: Linux bjb2293782.nichost.ru 6.6.151-1.el8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Aug 10
11:16:02 MSK 2026 x86_64
 

uid=12584(bjb2293782) gid=12584(bjb2293782) groups=12584(bjb2293782)  

Safe-mode: OFF (not secure)

/usr/share/php/Composer/   drwxr-xr-x
Free 59.96 GB of 99.95 GB (59.99%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Composer.php (4.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer;

use 
Composer\Package\Locker;
use 
Composer\Pcre\Preg;
use 
Composer\Plugin\PluginManager;
use 
Composer\Downloader\DownloadManager;
use 
Composer\Autoload\AutoloadGenerator;
use 
Composer\Package\Archiver\ArchiveManager;

/**
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Konstantin Kudryashiv <ever.zet@gmail.com>
 * @author Nils Adermann <naderman@naderman.de>
 */
class Composer extends PartialComposer
{
    
/*
     * Examples of the following constants in the various configurations they can be in
     *
     * You are probably better off using Composer::getVersion() though as that will always return something usable
     *
     * releases (phar):
     * const VERSION = '1.8.2';
     * const BRANCH_ALIAS_VERSION = '';
     * const RELEASE_DATE = '2019-01-29 15:00:53';
     * const SOURCE_VERSION = '';
     *
     * snapshot builds (phar):
     * const VERSION = 'd3873a05650e168251067d9648845c220c50e2d7';
     * const BRANCH_ALIAS_VERSION = '1.9-dev';
     * const RELEASE_DATE = '2019-02-20 07:43:56';
     * const SOURCE_VERSION = '';
     *
     * source (git clone):
     * const VERSION = '@package_version@';
     * const BRANCH_ALIAS_VERSION = '';
     * const RELEASE_DATE = '@release_date@';
     * const SOURCE_VERSION = '1.8-dev+source';
     *
     * @see getVersion()
     */
    
public const VERSION '2.6.5';
    public const 
BRANCH_ALIAS_VERSION '';
    public const 
RELEASE_DATE '2023-10-06 10:11:52';
    public const 
SOURCE_VERSION '';

    
/**
     * Version number of the internal composer-runtime-api package
     *
     * This is used to version features available to projects at runtime
     * like the platform-check file, the Composer\InstalledVersions class
     * and possibly others in the future.
     *
     * @var string
     */
    
public const RUNTIME_API_VERSION '2.2.2';

    public static function 
getVersion(): string
    
{
        
// no replacement done, this must be a source checkout
        
if (self::VERSION === '@package_version'.'@') {
            return 
self::SOURCE_VERSION;
        }

        
// we have a branch alias and version is a commit id, this must be a snapshot build
        
if (self::BRANCH_ALIAS_VERSION !== '' && Preg::isMatch('{^[a-f0-9]{40}$}'self::VERSION)) {
            return 
self::BRANCH_ALIAS_VERSION.'+'.self::VERSION;
        }

        return 
self::VERSION;
    }

    
/**
     * @var Locker
     */
    
private $locker;

    
/**
     * @var Downloader\DownloadManager
     */
    
private $downloadManager;

    
/**
     * @var Plugin\PluginManager
     */
    
private $pluginManager;

    
/**
     * @var Autoload\AutoloadGenerator
     */
    
private $autoloadGenerator;

    
/**
     * @var ArchiveManager
     */
    
private $archiveManager;

    public function 
setLocker(Locker $locker): void
    
{
        
$this->locker $locker;
    }

    public function 
getLocker(): Locker
    
{
        return 
$this->locker;
    }

    public function 
setDownloadManager(DownloadManager $manager): void
    
{
        
$this->downloadManager $manager;
    }

    public function 
getDownloadManager(): DownloadManager
    
{
        return 
$this->downloadManager;
    }

    public function 
setArchiveManager(ArchiveManager $manager): void
    
{
        
$this->archiveManager $manager;
    }

    public function 
getArchiveManager(): ArchiveManager
    
{
        return 
$this->archiveManager;
    }

    public function 
setPluginManager(PluginManager $manager): void
    
{
        
$this->pluginManager $manager;
    }

    public function 
getPluginManager(): PluginManager
    
{
        return 
$this->pluginManager;
    }

    public function 
setAutoloadGenerator(AutoloadGenerator $autoloadGenerator): void
    
{
        
$this->autoloadGenerator $autoloadGenerator;
    }

    public function 
getAutoloadGenerator(): AutoloadGenerator
    
{
        return 
$this->autoloadGenerator;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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