blob: c6b54af7ba2e1e3e960134233321efe47aa4528c [file] [log] [blame]
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +01001<?php
2
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02003/*
4 * This file is part of Composer.
5 *
6 * (c) Nils Adermann <naderman@naderman.de>
7 * Jordi Boggiano <j.boggiano@seld.be>
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 */
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010012
13namespace Composer;
14
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020015use Composer\Autoload\ClassLoader;
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010016use Composer\Semver\VersionParser;
17
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020018/**
19 * This class is copied in every Composer installed project and available to all
20 *
21 * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22 *
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010023 * To require its presence, you can require `composer-runtime-api ^2.0`
24 *
25 * @final
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020026 */
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010027class InstalledVersions
28{
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010029 /**
30 * @var mixed[]|null
31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
32 */
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020033 private static $installed;
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010034
35 /**
36 * @var bool|null
37 */
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020038 private static $canGetVendors;
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010039
40 /**
41 * @var array[]
42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
43 */
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020044 private static $installedByVendor = array();
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010045
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020046 /**
47 * Returns a list of all package names which are present, either by being installed, replaced or provided
48 *
49 * @return string[]
50 * @psalm-return list<string>
51 */
52 public static function getInstalledPackages()
53 {
54 $packages = array();
55 foreach (self::getInstalled() as $installed) {
56 $packages[] = array_keys($installed['versions']);
57 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010058
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020059 if (1 === \count($packages)) {
60 return $packages[0];
61 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010062
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020063 return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
64 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010065
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020066 /**
67 * Returns a list of all package names with a specific type e.g. 'library'
68 *
69 * @param string $type
70 * @return string[]
71 * @psalm-return list<string>
72 */
73 public static function getInstalledPackagesByType($type)
74 {
75 $packagesByType = array();
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010076
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020077 foreach (self::getInstalled() as $installed) {
78 foreach ($installed['versions'] as $name => $package) {
79 if (isset($package['type']) && $package['type'] === $type) {
80 $packagesByType[] = $name;
81 }
82 }
83 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010084
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020085 return $packagesByType;
86 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010087
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020088 /**
89 * Checks whether the given package is installed
90 *
91 * This also returns true if the package name is provided or replaced by another package
92 *
93 * @param string $packageName
94 * @param bool $includeDevRequirements
95 * @return bool
96 */
97 public static function isInstalled($packageName, $includeDevRequirements = true)
98 {
99 foreach (self::getInstalled() as $installed) {
100 if (isset($installed['versions'][$packageName])) {
101 return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
102 }
103 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100104
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200105 return false;
106 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100107
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200108 /**
109 * Checks whether the given package satisfies a version constraint
110 *
111 * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
112 *
113 * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
114 *
115 * @param VersionParser $parser Install composer/semver to have access to this class and functionality
116 * @param string $packageName
117 * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
118 * @return bool
119 */
120 public static function satisfies(VersionParser $parser, $packageName, $constraint)
121 {
122 $constraint = $parser->parseConstraints($constraint);
123 $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100124
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200125 return $provided->matches($constraint);
126 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100127
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200128 /**
129 * Returns a version constraint representing all the range(s) which are installed for a given package
130 *
131 * It is easier to use this via isInstalled() with the $constraint argument if you need to check
132 * whether a given version of a package is installed, and not just whether it exists
133 *
134 * @param string $packageName
135 * @return string Version constraint usable with composer/semver
136 */
137 public static function getVersionRanges($packageName)
138 {
139 foreach (self::getInstalled() as $installed) {
140 if (!isset($installed['versions'][$packageName])) {
141 continue;
142 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100143
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200144 $ranges = array();
145 if (isset($installed['versions'][$packageName]['pretty_version'])) {
146 $ranges[] = $installed['versions'][$packageName]['pretty_version'];
147 }
148 if (array_key_exists('aliases', $installed['versions'][$packageName])) {
149 $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
150 }
151 if (array_key_exists('replaced', $installed['versions'][$packageName])) {
152 $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
153 }
154 if (array_key_exists('provided', $installed['versions'][$packageName])) {
155 $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
156 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100157
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200158 return implode(' || ', $ranges);
159 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100160
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200161 throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
162 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100163
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200164 /**
165 * @param string $packageName
166 * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
167 */
168 public static function getVersion($packageName)
169 {
170 foreach (self::getInstalled() as $installed) {
171 if (!isset($installed['versions'][$packageName])) {
172 continue;
173 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100174
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200175 if (!isset($installed['versions'][$packageName]['version'])) {
176 return null;
177 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100178
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200179 return $installed['versions'][$packageName]['version'];
180 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100181
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200182 throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
183 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100184
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200185 /**
186 * @param string $packageName
187 * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
188 */
189 public static function getPrettyVersion($packageName)
190 {
191 foreach (self::getInstalled() as $installed) {
192 if (!isset($installed['versions'][$packageName])) {
193 continue;
194 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100195
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200196 if (!isset($installed['versions'][$packageName]['pretty_version'])) {
197 return null;
198 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100199
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200200 return $installed['versions'][$packageName]['pretty_version'];
201 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100202
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200203 throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
204 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100205
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200206 /**
207 * @param string $packageName
208 * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
209 */
210 public static function getReference($packageName)
211 {
212 foreach (self::getInstalled() as $installed) {
213 if (!isset($installed['versions'][$packageName])) {
214 continue;
215 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100216
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200217 if (!isset($installed['versions'][$packageName]['reference'])) {
218 return null;
219 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100220
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200221 return $installed['versions'][$packageName]['reference'];
222 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100223
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200224 throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
225 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100226
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200227 /**
228 * @param string $packageName
229 * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
230 */
231 public static function getInstallPath($packageName)
232 {
233 foreach (self::getInstalled() as $installed) {
234 if (!isset($installed['versions'][$packageName])) {
235 continue;
236 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100237
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200238 return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
239 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100240
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200241 throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
242 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100243
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200244 /**
245 * @return array
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +0100246 * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200247 */
248 public static function getRootPackage()
249 {
250 $installed = self::getInstalled();
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100251
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200252 return $installed[0]['root'];
253 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100254
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200255 /**
256 * Returns the raw installed.php data for custom implementations
257 *
258 * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
259 * @return array[]
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +0100260 * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200261 */
262 public static function getRawData()
263 {
264 @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100265
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200266 if (null === self::$installed) {
267 // only require the installed.php file if this file is loaded from its dumped location,
268 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
269 if (substr(__DIR__, -8, 1) !== 'C') {
270 self::$installed = include __DIR__ . '/installed.php';
271 } else {
272 self::$installed = array();
273 }
274 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100275
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200276 return self::$installed;
277 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100278
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200279 /**
280 * Returns the raw data of all installed.php which are currently loaded for custom implementations
281 *
282 * @return array[]
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +0100283 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200284 */
285 public static function getAllRawData()
286 {
287 return self::getInstalled();
288 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100289
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200290 /**
291 * Lets you reload the static array from another file
292 *
293 * This is only useful for complex integrations in which a project needs to use
294 * this class but then also needs to execute another project's autoloader in process,
295 * and wants to ensure both projects have access to their version of installed.php.
296 *
297 * A typical case would be PHPUnit, where it would need to make sure it reads all
298 * the data it needs from this class, then call reload() with
299 * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
300 * the project in which it runs can then also use this class safely, without
301 * interference between PHPUnit's dependencies and the project's dependencies.
302 *
303 * @param array[] $data A vendor/composer/installed.php data set
304 * @return void
305 *
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +0100306 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200307 */
308 public static function reload($data)
309 {
310 self::$installed = $data;
311 self::$installedByVendor = array();
312 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100313
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200314 /**
315 * @return array[]
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +0100316 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200317 */
318 private static function getInstalled()
319 {
320 if (null === self::$canGetVendors) {
321 self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
322 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100323
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200324 $installed = array();
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100325
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200326 if (self::$canGetVendors) {
327 foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
328 if (isset(self::$installedByVendor[$vendorDir])) {
329 $installed[] = self::$installedByVendor[$vendorDir];
330 } elseif (is_file($vendorDir.'/composer/installed.php')) {
331 $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
332 if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
333 self::$installed = $installed[count($installed) - 1];
334 }
335 }
336 }
337 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100338
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200339 if (null === self::$installed) {
340 // only require the installed.php file if this file is loaded from its dumped location,
341 // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
342 if (substr(__DIR__, -8, 1) !== 'C') {
343 self::$installed = require __DIR__ . '/installed.php';
344 } else {
345 self::$installed = array();
346 }
347 }
348 $installed[] = self::$installed;
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100349
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +0200350 return $installed;
351 }
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +0100352}