$packages
$packages : array<mixed,\Composer\Package\PackageInterface>
A repository implementation that simply stores packages in an array
$packages : array<mixed,\Composer\Package\PackageInterface>
$loader : \Composer\Package\Loader\LoaderInterface
__construct(array $repoConfig, \Composer\IO\IOInterface $io)
array | $repoConfig | |
\Composer\IO\IOInterface | $io |
hasPackage(\Composer\Package\PackageInterface $package)
{@inheritDoc}
\Composer\Package\PackageInterface | $package |
addPackage(\Composer\Package\PackageInterface $package)
Adds a new package to the repository
\Composer\Package\PackageInterface | $package |
removePackage(\Composer\Package\PackageInterface $package)
Removes package from repository.
\Composer\Package\PackageInterface | $package | package instance |
getDependents(string|array<mixed,string> $needle, \Composer\Semver\Constraint\ConstraintInterface|null $constraint = null, boolean $invert = false, boolean $recurse = true, array<mixed,string> $packagesFound = null) : array
Returns a list of links causing the requested needle packages to be installed, as an associative array with the dependent's name as key, and an array containing in order the PackageInterface and Link describing the relationship as values. If recursive lookup was requested a third value is returned containing an identically formed array up to the root package. That third value will be false in case a circular recursion was detected.
string|array<mixed,string> | $needle | The package name(s) to inspect. |
\Composer\Semver\Constraint\ConstraintInterface|null | $constraint | Optional constraint to filter by. |
boolean | $invert | Whether to invert matches to discover reasons for the package NOT to be installed. |
boolean | $recurse | Whether to recursively expand the requirement tree up to the root package. |
array<mixed,string> | $packagesFound | Used internally when recurring |
An associative array of arrays as described above.
createAliasPackage(\Composer\Package\PackageInterface $package, $alias, $prettyAlias)
\Composer\Package\PackageInterface | $package | |
$alias | ||
$prettyAlias |