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 /
Package /
Delete
Unzip
Name
Size
Permission
Date
Action
Archiver
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Comparer
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Dumper
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Loader
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
Version
[ DIR ]
drwxr-xr-x
2026-07-12 06:24
AliasPackage.php
9.59
KB
-rw-r--r--
2023-03-21 10:50
BasePackage.php
7.45
KB
-rw-r--r--
2023-03-21 10:50
CompleteAliasPackage.php
3.84
KB
-rw-r--r--
2023-03-21 10:50
CompletePackage.php
4.76
KB
-rw-r--r--
2023-03-21 10:50
CompletePackageInterface.php
4.69
KB
-rw-r--r--
2023-03-21 10:50
Link.php
3.55
KB
-rw-r--r--
2023-03-21 10:50
Locker.php
19.11
KB
-rw-r--r--
2023-03-21 10:50
Package.php
16.63
KB
-rw-r--r--
2023-03-21 10:50
PackageInterface.php
11.45
KB
-rw-r--r--
2023-03-21 10:50
RootAliasPackage.php
4.83
KB
-rw-r--r--
2023-03-21 10:50
RootPackage.php
2.78
KB
-rw-r--r--
2023-03-21 10:50
RootPackageInterface.php
4.37
KB
-rw-r--r--
2023-03-21 10:50
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\Package; /** * The root package represents the project's composer.json and contains additional metadata * * @author Jordi Boggiano <j.boggiano@seld.be> */ class RootPackage extends CompletePackage implements RootPackageInterface { public const DEFAULT_PRETTY_VERSION = '1.0.0+no-version-set'; /** @var string */ protected $minimumStability = 'stable'; /** @var bool */ protected $preferStable = false; /** @var array<string, BasePackage::STABILITY_*> Map of package name to stability constant */ protected $stabilityFlags = []; /** @var mixed[] */ protected $config = []; /** @var array<string, string> Map of package name to reference/commit hash */ protected $references = []; /** @var list<array{package: string, version: string, alias: string, alias_normalized: string}> */ protected $aliases = []; /** * @inheritDoc */ public function setMinimumStability(string $minimumStability): void { $this->minimumStability = $minimumStability; } /** * @inheritDoc */ public function getMinimumStability(): string { return $this->minimumStability; } /** * @inheritDoc */ public function setStabilityFlags(array $stabilityFlags): void { $this->stabilityFlags = $stabilityFlags; } /** * @inheritDoc */ public function getStabilityFlags(): array { return $this->stabilityFlags; } /** * @inheritDoc */ public function setPreferStable(bool $preferStable): void { $this->preferStable = $preferStable; } /** * @inheritDoc */ public function getPreferStable(): bool { return $this->preferStable; } /** * @inheritDoc */ public function setConfig(array $config): void { $this->config = $config; } /** * @inheritDoc */ public function getConfig(): array { return $this->config; } /** * @inheritDoc */ public function setReferences(array $references): void { $this->references = $references; } /** * @inheritDoc */ public function getReferences(): array { return $this->references; } /** * @inheritDoc */ public function setAliases(array $aliases): void { $this->aliases = $aliases; } /** * @inheritDoc */ public function getAliases(): array { return $this->aliases; } }