Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
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 /
Loader /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayLoader.php
11.32
KB
-rw-r--r--
2016-11-03 17:43
InvalidPackageException.php
1001
B
-rw-r--r--
2016-11-03 17:43
JsonLoader.php
1.09
KB
-rw-r--r--
2016-11-03 17:43
LoaderInterface.php
834
B
-rw-r--r--
2016-11-03 17:43
RootPackageLoader.php
8.74
KB
-rw-r--r--
2016-11-03 17:43
ValidatingArrayLoader.php
17.61
KB
-rw-r--r--
2016-11-03 17:43
Save
Rename
<?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\Package\Loader; /** * Defines a loader that takes an array to create package instances * * @author Jordi Boggiano <j.boggiano@seld.be> */ interface LoaderInterface { /** * Converts a package from an array to a real instance * * @param array $package Package config * @param string $class Package class to use * @return \Composer\Package\PackageInterface */ public function load(array $package, $class = 'Composer\Package\CompletePackage'); }