OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Composer
/
Repository
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:22 AM
rwxr-xr-x
📄
ArrayRepository.php
5.58 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
ArtifactRepository.php
4.88 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
BaseRepository.php
7.61 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
ComposerRepository.php
31.13 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
CompositeRepository.php
3.83 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
ConfigurableRepositoryInterface.php
478 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📄
FilesystemRepository.php
2.23 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
InstalledArrayRepository.php
584 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📄
InstalledFilesystemRepository.php
504 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📄
InstalledRepositoryInterface.php
579 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📄
InvalidRepositoryException.php
479 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📄
PackageRepository.php
1.59 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
PathRepository.php
5.14 KB
01/31/2018 03:28:18 PM
rw-r--r--
📁
Pear
-
07/20/2024 06:32:22 AM
rwxr-xr-x
📄
PearRepository.php
8.54 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
PlatformRepository.php
10.57 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
RepositoryFactory.php
6.71 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
RepositoryInterface.php
2.18 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
RepositoryManager.php
5.42 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
RepositorySecurityException.php
482 bytes
01/31/2018 03:28:18 PM
rw-r--r--
📁
Vcs
-
07/20/2024 06:32:22 AM
rwxr-xr-x
📄
VcsRepository.php
11.18 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
WritableArrayRepository.php
1.48 KB
01/31/2018 03:28:18 PM
rw-r--r--
📄
WritableRepositoryInterface.php
1.22 KB
01/31/2018 03:28:18 PM
rw-r--r--
Editing: RepositoryInterface.php
Close
<?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\Repository; use Composer\Package\PackageInterface; /** * Repository interface. * * @author Nils Adermann <naderman@naderman.de> * @author Konstantin Kudryashov <ever.zet@gmail.com> * @author Jordi Boggiano <j.boggiano@seld.be> */ interface RepositoryInterface extends \Countable { const SEARCH_FULLTEXT = 0; const SEARCH_NAME = 1; /** * Checks if specified package registered (installed). * * @param PackageInterface $package package instance * * @return bool */ public function hasPackage(PackageInterface $package); /** * Searches for the first match of a package by name and version. * * @param string $name package name * @param string|\Composer\Semver\Constraint\ConstraintInterface $constraint package version or version constraint to match against * * @return PackageInterface|null */ public function findPackage($name, $constraint); /** * Searches for all packages matching a name and optionally a version. * * @param string $name package name * @param string|\Composer\Semver\Constraint\ConstraintInterface $constraint package version or version constraint to match against * * @return PackageInterface[] */ public function findPackages($name, $constraint = null); /** * Returns list of registered packages. * * @return PackageInterface[] */ public function getPackages(); /** * Searches the repository for packages containing the query * * @param string $query search query * @param int $mode a set of SEARCH_* constants to search on, implementations should do a best effort only * * @return \array[] an array of array('name' => '...', 'description' => '...') */ public function search($query, $mode = 0); }