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
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
flex /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Configurator
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Event
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Unpack
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Update
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Configurator.php
4.25
KB
-rwxrwxr-x
2025-11-16 09:38
Downloader.php
18.14
KB
-rwxrwxr-x
2025-11-16 09:38
Flex.php
33.68
KB
-rwxrwxr-x
2025-11-16 09:38
GithubApi.php
5.89
KB
-rwxrwxr-x
2025-11-16 09:38
InformationOperation.php
1.81
KB
-rwxrwxr-x
2025-11-16 09:38
Lock.php
1.83
KB
-rwxrwxr-x
2025-11-16 09:38
Options.php
4.2
KB
-rwxrwxr-x
2025-11-16 09:38
PackageFilter.php
5.71
KB
-rwxrwxr-x
2025-11-16 09:38
PackageJsonSynchronizer.php
15.59
KB
-rwxrwxr-x
2025-11-16 09:38
PackageResolver.php
5.79
KB
-rwxrwxr-x
2025-11-16 09:38
Path.php
966
B
-rwxrwxr-x
2025-11-16 09:38
Recipe.php
2.91
KB
-rwxrwxr-x
2025-11-16 09:38
Response.php
1.95
KB
-rwxrwxr-x
2025-11-16 09:38
ScriptExecutor.php
4.9
KB
-rwxrwxr-x
2025-11-16 09:38
SymfonyBundle.php
3.66
KB
-rwxrwxr-x
2025-11-16 09:38
SymfonyPackInstaller.php
478
B
-rwxrwxr-x
2025-11-16 09:38
Unpacker.php
8.55
KB
-rwxrwxr-x
2025-11-16 09:38
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Flex; use Composer\Package\PackageInterface; /** * @author Fabien Potencier <fabien@symfony.com> */ class Recipe { private $package; private $name; private $job; private $data; private $lock; public function __construct(PackageInterface $package, string $name, string $job, array $data, array $lock = []) { $this->package = $package; $this->name = $name; $this->job = $job; $this->data = $data; $this->lock = $lock; } public function getPackage(): PackageInterface { return $this->package; } public function getName(): string { return $this->name; } public function getJob(): string { return $this->job; } public function getManifest(): array { if (!isset($this->data['manifest'])) { throw new \LogicException(\sprintf('Manifest is not available for recipe "%s".', $this->name)); } return $this->data['manifest']; } public function getFiles(): array { return $this->data['files'] ?? []; } public function getOrigin(): string { return $this->data['origin'] ?? ''; } public function getFormattedOrigin(): string { if (!$this->getOrigin()) { return ''; } // symfony/translation:3.3@github.com/symfony/recipes:branch if (!preg_match('/^([^:]++):([^@]++)@(.+)$/', $this->getOrigin(), $matches)) { return $this->getOrigin(); } return \sprintf('<info>%s</> (<comment>>=%s</>): From %s', $matches[1], $matches[2], 'auto-generated recipe' === $matches[3] ? '<comment>'.$matches[3].'</>' : $matches[3]); } public function getURL(): string { if (!$this->data['origin']) { return ''; } // symfony/translation:3.3@github.com/symfony/recipes:branch if (!preg_match('/^([^:]++):([^@]++)@([^:]++):(.+)$/', $this->data['origin'], $matches)) { // that excludes auto-generated recipes, which is what we want return ''; } return \sprintf('https://%s/tree/%s/%s/%s', $matches[3], $matches[4], $matches[1], $matches[2]); } public function isContrib(): bool { return $this->data['is_contrib'] ?? false; } public function getRef() { return $this->lock['recipe']['ref'] ?? null; } public function isAuto(): bool { return !isset($this->lock['recipe']); } public function getVersion(): string { return $this->lock['recipe']['version'] ?? $this->lock['version']; } public function getLock(): array { return $this->lock; } }