parent
50c7a5e4cd
commit
0262cc33d7
@ -0,0 +1,74 @@ |
||||
<?php |
||||
|
||||
/** @generate-class-entries */ |
||||
|
||||
namespace FTP { |
||||
|
||||
/** |
||||
* @strict-properties |
||||
* @not-serializable |
||||
*/ |
||||
final class Connection |
||||
{ |
||||
} |
||||
|
||||
} |
||||
|
||||
namespace { |
||||
|
||||
function ftp_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|resource|false {} |
||||
|
||||
#ifdef HAVE_FTP_SSL |
||||
function ftp_ssl_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|resource|false {} |
||||
#endif |
||||
|
||||
function ftp_login(FTP\Connection|resource $ftp, string $username, string $password): bool {} |
||||
function ftp_pwd(FTP\Connection|resource $ftp): string|false {} |
||||
function ftp_cdup(FTP\Connection|resource $ftp): bool {} |
||||
function ftp_chdir(FTP\Connection|resource $ftp, string $directory): bool {} |
||||
function ftp_exec(FTP\Connection|resource $ftp, string $command): bool {} |
||||
function ftp_raw(FTP\Connection|resource $ftp, string $command): ?array {} |
||||
function ftp_mkdir(FTP\Connection|resource $ftp, string $directory): string|false {} |
||||
function ftp_rmdir(FTP\Connection|resource $ftp, string $directory): bool {} |
||||
function ftp_chmod(FTP\Connection|resource $ftp, int $permissions, string $filename): int|false {} |
||||
|
||||
/** @param string $response */ |
||||
function ftp_alloc(FTP\Connection|resource $ftp, int $size, &$response = null): bool {} |
||||
function ftp_nlist(FTP\Connection|resource $ftp, string $directory): array|false {} |
||||
function ftp_rawlist(FTP\Connection|resource $ftp, string $directory, bool $recursive = false): array|false {} |
||||
function ftp_mlsd(FTP\Connection|resource $ftp, string $directory): array|false {} |
||||
function ftp_systype(FTP\Connection|resource $ftp): string|false {} |
||||
|
||||
/** @param resource $stream */ |
||||
function ftp_fget(FTP\Connection|resource $ftp, $stream, string $remote_filename, int $mode = FTP_BINARY, int $offset = 0): bool {} |
||||
|
||||
/** @param resource $stream */ |
||||
function ftp_nb_fget(FTP\Connection|resource $ftp, $stream, string $remote_filename, int $mode = FTP_BINARY, int $offset = 0): int {} |
||||
function ftp_pasv(FTP\Connection|resource $ftp, bool $enable): bool {} |
||||
function ftp_get(FTP\Connection|resource $ftp, string $local_filename, string $remote_filename, int $mode = FTP_BINARY, int $offset = 0): bool {} |
||||
function ftp_nb_get(FTP\Connection|resource $ftp, string $local_filename, string $remote_filename, int $mode = FTP_BINARY, int $offset = 0): int {} |
||||
function ftp_nb_continue(FTP\Connection|resource $ftp): int {} |
||||
|
||||
/** @param resource $stream */ |
||||
function ftp_fput(FTP\Connection|resource $ftp, string $remote_filename, $stream, int $mode = FTP_BINARY, int $offset = 0): bool {} |
||||
|
||||
/** @param resource $stream */ |
||||
function ftp_nb_fput(FTP\Connection|resource $ftp, string $remote_filename, $stream, int $mode = FTP_BINARY, int $offset = 0): int {} |
||||
function ftp_put(FTP\Connection|resource $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY, int $offset = 0): bool {} |
||||
function ftp_append(FTP\Connection|resource $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY): bool {} |
||||
function ftp_nb_put(FTP\Connection|resource $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY, int $offset = 0): int|false {} |
||||
function ftp_size(FTP\Connection|resource $ftp, string $filename): int {} |
||||
function ftp_mdtm(FTP\Connection|resource $ftp, string $filename): int {} |
||||
function ftp_rename(FTP\Connection|resource $ftp, string $from, string $to): bool {} |
||||
function ftp_delete(FTP\Connection|resource $ftp, string $filename): bool {} |
||||
function ftp_site(FTP\Connection|resource $ftp, string $command): bool {} |
||||
function ftp_close(FTP\Connection|resource $ftp): bool {} |
||||
|
||||
/** @alias ftp_close */ |
||||
function ftp_quit(FTP\Connection|resource $ftp): bool {} |
||||
|
||||
/** @param int|bool $value */ |
||||
function ftp_set_option(FTP\Connection|resource $ftp, int $option, $value): bool {} |
||||
function ftp_get_option(FTP\Connection|resource $ftp, int $option): int|bool {} |
||||
|
||||
} |
||||
@ -0,0 +1,50 @@ |
||||
<?php |
||||
|
||||
// Licensed under Apache-2.0 |
||||
// Copied from https://github.com/JetBrains/phpstorm-stubs/blob/master/pcntl/pcntl.php |
||||
|
||||
define('WNOHANG', 1); |
||||
define('WUNTRACED', 2); |
||||
define('WCONTINUED', 8); |
||||
define('SIG_IGN', 1); |
||||
define('SIG_DFL', 0); |
||||
define('SIG_ERR', -1); |
||||
define('SIGHUP', 1); |
||||
define('SIGINT', 2); |
||||
define('SIGQUIT', 3); |
||||
define('SIGILL', 4); |
||||
define('SIGTRAP', 5); |
||||
define('SIGABRT', 6); |
||||
define('SIGIOT', 6); |
||||
define('SIGBUS', 7); |
||||
define('SIGFPE', 8); |
||||
define('SIGKILL', 9); |
||||
define('SIGUSR1', 10); |
||||
define('SIGSEGV', 11); |
||||
define('SIGUSR2', 12); |
||||
define('SIGPIPE', 13); |
||||
define('SIGALRM', 14); |
||||
define('SIGTERM', 15); |
||||
define('SIGSTKFLT', 16); |
||||
define('SIGCLD', 17); |
||||
define('SIGCHLD', 17); |
||||
define('SIGCONT', 18); |
||||
define('SIGSTOP', 19); |
||||
define('SIGTSTP', 20); |
||||
define('SIGTTIN', 21); |
||||
define('SIGTTOU', 22); |
||||
define('SIGURG', 23); |
||||
define('SIGXCPU', 24); |
||||
define('SIGXFSZ', 25); |
||||
define('SIGVTALRM', 26); |
||||
define('SIGPROF', 27); |
||||
define('SIGWINCH', 28); |
||||
define('SIGPOLL', 29); |
||||
define('SIGIO', 29); |
||||
define('SIGPWR', 30); |
||||
define('SIGSYS', 31); |
||||
define('SIGBABY', 31); |
||||
define('PRIO_PGRP', 1); |
||||
define('PRIO_USER', 2); |
||||
define('PRIO_PROCESS', 0); |
||||
|
||||
@ -1,33 +1,49 @@ |
||||
{ |
||||
"config" : { |
||||
"vendor-dir": "lib/composer", |
||||
"optimize-autoloader": true |
||||
}, |
||||
"autoload" : { |
||||
"config" : { |
||||
"vendor-dir": "lib/composer", |
||||
"optimize-autoloader": true, |
||||
"sort-packages": true, |
||||
"platform": { |
||||
"php": "7.3" |
||||
}, |
||||
"allow-plugins": { |
||||
"bamarni/composer-bin-plugin": true, |
||||
"composer/package-versions-deprecated": true |
||||
} |
||||
}, |
||||
"autoload" : { |
||||
"psr-4": { |
||||
"": "lib/private/legacy", |
||||
"OC\\": "lib/private", |
||||
"OC\\Core\\": "core/", |
||||
"OCP\\": "lib/public" |
||||
} |
||||
}, |
||||
"require": { |
||||
"ext-json": "*", |
||||
"ext-libxml": "*", |
||||
"ext-mbstring": "*", |
||||
"ext-pdo": "*", |
||||
"ext-simplexml": "*", |
||||
"ext-xmlreader": "*", |
||||
"ext-zip": "*" |
||||
}, |
||||
"require-dev": { |
||||
"nextcloud/coding-standard": "^0.5.0", |
||||
"vimeo/psalm": "^4.0" |
||||
}, |
||||
"scripts": { |
||||
"cs:fix": "php-cs-fixer fix", |
||||
"cs:check": "php-cs-fixer fix --dry-run --diff", |
||||
"lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l", |
||||
"psalm": "psalm" |
||||
} |
||||
"OC\\": "lib/private", |
||||
"OC\\Core\\": "core/", |
||||
"OCP\\": "lib/public" |
||||
} |
||||
}, |
||||
"require": { |
||||
"ext-json": "*", |
||||
"ext-libxml": "*", |
||||
"ext-mbstring": "*", |
||||
"ext-pdo": "*", |
||||
"ext-simplexml": "*", |
||||
"ext-xmlreader": "*", |
||||
"ext-zip": "*" |
||||
}, |
||||
"require-dev": { |
||||
"bamarni/composer-bin-plugin": "^1.4" |
||||
}, |
||||
"scripts": { |
||||
"post-install-cmd": [ |
||||
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all install", |
||||
"composer dump-autoload" |
||||
], |
||||
"post-update-cmd": [ |
||||
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all update --ansi", |
||||
"composer dump-autoload" |
||||
], |
||||
"cs:fix": "php-cs-fixer fix", |
||||
"cs:check": "php-cs-fixer fix --dry-run --diff", |
||||
"lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l", |
||||
"psalm": "psalm --threads=1", |
||||
"psalm:update-baseline": "psalm --threads=1 --update-baseline --set-baseline=build/psalm-baseline.xml" |
||||
} |
||||
} |
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,299 +1,350 @@ |
||||
<?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; |
||||
|
||||
use Composer\Autoload\ClassLoader; |
||||
use Composer\Semver\VersionParser; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/** |
||||
* This class is copied in every Composer installed project and available to all |
||||
* |
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions |
||||
* |
||||
* To require its presence, you can require `composer-runtime-api ^2.0` |
||||
*/ |
||||
class InstalledVersions |
||||
{ |
||||
private static $installed = array ( |
||||
'root' => |
||||
array ( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'aliases' => |
||||
array ( |
||||
), |
||||
'reference' => '619b35b480a2d348436156a2a6144895b00b1e07', |
||||
'name' => '__root__', |
||||
), |
||||
'versions' => |
||||
array ( |
||||
'__root__' => |
||||
array ( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'aliases' => |
||||
array ( |
||||
), |
||||
'reference' => '619b35b480a2d348436156a2a6144895b00b1e07', |
||||
), |
||||
), |
||||
); |
||||
private static $canGetVendors; |
||||
private static $installedByVendor = array(); |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getInstalledPackages() |
||||
{ |
||||
$packages = array(); |
||||
foreach (self::getInstalled() as $installed) { |
||||
$packages[] = array_keys($installed['versions']); |
||||
} |
||||
|
||||
if (1 === \count($packages)) { |
||||
return $packages[0]; |
||||
} |
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function isInstalled($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (isset($installed['versions'][$packageName])) { |
||||
return true; |
||||
} |
||||
} |
||||
|
||||
return false; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint) |
||||
{ |
||||
$constraint = $parser->parseConstraints($constraint); |
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName)); |
||||
|
||||
return $provided->matches($constraint); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getVersionRanges($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
$ranges = array(); |
||||
if (isset($installed['versions'][$packageName]['pretty_version'])) { |
||||
$ranges[] = $installed['versions'][$packageName]['pretty_version']; |
||||
} |
||||
if (array_key_exists('aliases', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); |
||||
} |
||||
if (array_key_exists('replaced', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); |
||||
} |
||||
if (array_key_exists('provided', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); |
||||
} |
||||
|
||||
return implode(' || ', $ranges); |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getVersion($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['version'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['version']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getPrettyVersion($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['pretty_version'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['pretty_version']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getReference($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['reference'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['reference']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getRootPackage() |
||||
{ |
||||
$installed = self::getInstalled(); |
||||
|
||||
return $installed[0]['root']; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getRawData() |
||||
{ |
||||
@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); |
||||
|
||||
return self::$installed; |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function getAllRawData() |
||||
{ |
||||
return self::getInstalled(); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public static function reload($data) |
||||
{ |
||||
self::$installed = $data; |
||||
self::$installedByVendor = array(); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private static function getInstalled() |
||||
{ |
||||
if (null === self::$canGetVendors) { |
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); |
||||
} |
||||
|
||||
$installed = array(); |
||||
|
||||
if (self::$canGetVendors) { |
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { |
||||
if (isset(self::$installedByVendor[$vendorDir])) { |
||||
$installed[] = self::$installedByVendor[$vendorDir]; |
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) { |
||||
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; |
||||
} |
||||
} |
||||
} |
||||
|
||||
$installed[] = self::$installed; |
||||
|
||||
return $installed; |
||||
} |
||||
/** |
||||
* @var mixed[]|null |
||||
* @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null |
||||
*/ |
||||
private static $installed; |
||||
|
||||
/** |
||||
* @var bool|null |
||||
*/ |
||||
private static $canGetVendors; |
||||
|
||||
/** |
||||
* @var array[] |
||||
* @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}> |
||||
*/ |
||||
private static $installedByVendor = array(); |
||||
|
||||
/** |
||||
* Returns a list of all package names which are present, either by being installed, replaced or provided |
||||
* |
||||
* @return string[] |
||||
* @psalm-return list<string> |
||||
*/ |
||||
public static function getInstalledPackages() |
||||
{ |
||||
$packages = array(); |
||||
foreach (self::getInstalled() as $installed) { |
||||
$packages[] = array_keys($installed['versions']); |
||||
} |
||||
|
||||
if (1 === \count($packages)) { |
||||
return $packages[0]; |
||||
} |
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); |
||||
} |
||||
|
||||
/** |
||||
* Returns a list of all package names with a specific type e.g. 'library' |
||||
* |
||||
* @param string $type |
||||
* @return string[] |
||||
* @psalm-return list<string> |
||||
*/ |
||||
public static function getInstalledPackagesByType($type) |
||||
{ |
||||
$packagesByType = array(); |
||||
|
||||
foreach (self::getInstalled() as $installed) { |
||||
foreach ($installed['versions'] as $name => $package) { |
||||
if (isset($package['type']) && $package['type'] === $type) { |
||||
$packagesByType[] = $name; |
||||
} |
||||
} |
||||
} |
||||
|
||||
return $packagesByType; |
||||
} |
||||
|
||||
/** |
||||
* Checks whether the given package is installed |
||||
* |
||||
* This also returns true if the package name is provided or replaced by another package |
||||
* |
||||
* @param string $packageName |
||||
* @param bool $includeDevRequirements |
||||
* @return bool |
||||
*/ |
||||
public static function isInstalled($packageName, $includeDevRequirements = true) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (isset($installed['versions'][$packageName])) { |
||||
return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); |
||||
} |
||||
} |
||||
|
||||
return false; |
||||
} |
||||
|
||||
/** |
||||
* Checks whether the given package satisfies a version constraint |
||||
* |
||||
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: |
||||
* |
||||
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') |
||||
* |
||||
* @param VersionParser $parser Install composer/semver to have access to this class and functionality |
||||
* @param string $packageName |
||||
* @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 |
||||
* @return bool |
||||
*/ |
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint) |
||||
{ |
||||
$constraint = $parser->parseConstraints($constraint); |
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName)); |
||||
|
||||
return $provided->matches($constraint); |
||||
} |
||||
|
||||
/** |
||||
* Returns a version constraint representing all the range(s) which are installed for a given package |
||||
* |
||||
* It is easier to use this via isInstalled() with the $constraint argument if you need to check |
||||
* whether a given version of a package is installed, and not just whether it exists |
||||
* |
||||
* @param string $packageName |
||||
* @return string Version constraint usable with composer/semver |
||||
*/ |
||||
public static function getVersionRanges($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
$ranges = array(); |
||||
if (isset($installed['versions'][$packageName]['pretty_version'])) { |
||||
$ranges[] = $installed['versions'][$packageName]['pretty_version']; |
||||
} |
||||
if (array_key_exists('aliases', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); |
||||
} |
||||
if (array_key_exists('replaced', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); |
||||
} |
||||
if (array_key_exists('provided', $installed['versions'][$packageName])) { |
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); |
||||
} |
||||
|
||||
return implode(' || ', $ranges); |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
/** |
||||
* @param string $packageName |
||||
* @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 |
||||
*/ |
||||
public static function getVersion($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['version'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['version']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
/** |
||||
* @param string $packageName |
||||
* @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 |
||||
*/ |
||||
public static function getPrettyVersion($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['pretty_version'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['pretty_version']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
/** |
||||
* @param string $packageName |
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference |
||||
*/ |
||||
public static function getReference($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
if (!isset($installed['versions'][$packageName]['reference'])) { |
||||
return null; |
||||
} |
||||
|
||||
return $installed['versions'][$packageName]['reference']; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
/** |
||||
* @param string $packageName |
||||
* @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. |
||||
*/ |
||||
public static function getInstallPath($packageName) |
||||
{ |
||||
foreach (self::getInstalled() as $installed) { |
||||
if (!isset($installed['versions'][$packageName])) { |
||||
continue; |
||||
} |
||||
|
||||
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
||||
} |
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
||||
} |
||||
|
||||
/** |
||||
* @return array |
||||
* @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string} |
||||
*/ |
||||
public static function getRootPackage() |
||||
{ |
||||
$installed = self::getInstalled(); |
||||
|
||||
return $installed[0]['root']; |
||||
} |
||||
|
||||
/** |
||||
* Returns the raw installed.php data for custom implementations |
||||
* |
||||
* @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. |
||||
* @return array[] |
||||
* @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} |
||||
*/ |
||||
public static function getRawData() |
||||
{ |
||||
@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); |
||||
|
||||
if (null === self::$installed) { |
||||
// only require the installed.php file if this file is loaded from its dumped location, |
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
||||
if (substr(__DIR__, -8, 1) !== 'C') { |
||||
self::$installed = include __DIR__ . '/installed.php'; |
||||
} else { |
||||
self::$installed = array(); |
||||
} |
||||
} |
||||
|
||||
return self::$installed; |
||||
} |
||||
|
||||
/** |
||||
* Returns the raw data of all installed.php which are currently loaded for custom implementations |
||||
* |
||||
* @return array[] |
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}> |
||||
*/ |
||||
public static function getAllRawData() |
||||
{ |
||||
return self::getInstalled(); |
||||
} |
||||
|
||||
/** |
||||
* Lets you reload the static array from another file |
||||
* |
||||
* This is only useful for complex integrations in which a project needs to use |
||||
* this class but then also needs to execute another project's autoloader in process, |
||||
* and wants to ensure both projects have access to their version of installed.php. |
||||
* |
||||
* A typical case would be PHPUnit, where it would need to make sure it reads all |
||||
* the data it needs from this class, then call reload() with |
||||
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure |
||||
* the project in which it runs can then also use this class safely, without |
||||
* interference between PHPUnit's dependencies and the project's dependencies. |
||||
* |
||||
* @param array[] $data A vendor/composer/installed.php data set |
||||
* @return void |
||||
* |
||||
* @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data |
||||
*/ |
||||
public static function reload($data) |
||||
{ |
||||
self::$installed = $data; |
||||
self::$installedByVendor = array(); |
||||
} |
||||
|
||||
/** |
||||
* @return array[] |
||||
* @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}> |
||||
*/ |
||||
private static function getInstalled() |
||||
{ |
||||
if (null === self::$canGetVendors) { |
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); |
||||
} |
||||
|
||||
$installed = array(); |
||||
|
||||
if (self::$canGetVendors) { |
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { |
||||
if (isset(self::$installedByVendor[$vendorDir])) { |
||||
$installed[] = self::$installedByVendor[$vendorDir]; |
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) { |
||||
$installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; |
||||
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { |
||||
self::$installed = $installed[count($installed) - 1]; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
if (null === self::$installed) { |
||||
// only require the installed.php file if this file is loaded from its dumped location, |
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
||||
if (substr(__DIR__, -8, 1) !== 'C') { |
||||
self::$installed = require __DIR__ . '/installed.php'; |
||||
} else { |
||||
self::$installed = array(); |
||||
} |
||||
} |
||||
$installed[] = self::$installed; |
||||
|
||||
return $installed; |
||||
} |
||||
} |
||||
|
||||
@ -1,24 +1,32 @@ |
||||
<?php return array ( |
||||
'root' => |
||||
array ( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'aliases' => |
||||
array ( |
||||
<?php return array( |
||||
'root' => array( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'type' => 'library', |
||||
'install_path' => __DIR__ . '/../../../', |
||||
'aliases' => array(), |
||||
'reference' => '50c7a5e4cddd055db6ab1e7e30cb94b43001543f', |
||||
'name' => '__root__', |
||||
'dev' => true, |
||||
), |
||||
'reference' => '619b35b480a2d348436156a2a6144895b00b1e07', |
||||
'name' => '__root__', |
||||
), |
||||
'versions' => |
||||
array ( |
||||
'__root__' => |
||||
array ( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'aliases' => |
||||
array ( |
||||
), |
||||
'reference' => '619b35b480a2d348436156a2a6144895b00b1e07', |
||||
'versions' => array( |
||||
'__root__' => array( |
||||
'pretty_version' => 'dev-master', |
||||
'version' => 'dev-master', |
||||
'type' => 'library', |
||||
'install_path' => __DIR__ . '/../../../', |
||||
'aliases' => array(), |
||||
'reference' => '50c7a5e4cddd055db6ab1e7e30cb94b43001543f', |
||||
'dev_requirement' => false, |
||||
), |
||||
'bamarni/composer-bin-plugin' => array( |
||||
'pretty_version' => '1.4.1', |
||||
'version' => '1.4.1.0', |
||||
'type' => 'composer-plugin', |
||||
'install_path' => __DIR__ . '/../bamarni/composer-bin-plugin', |
||||
'aliases' => array(), |
||||
'reference' => '9329fb0fbe29e0e1b2db8f4639a193e4f5406225', |
||||
'dev_requirement' => true, |
||||
), |
||||
), |
||||
), |
||||
); |
||||
|
||||
@ -0,0 +1,11 @@ |
||||
{ |
||||
"config": { |
||||
"platform": { |
||||
"php": "7.3" |
||||
} |
||||
}, |
||||
"require": { |
||||
"friendsofphp/php-cs-fixer": "^3.4.0", |
||||
"nextcloud/coding-standard": "^1.0.0" |
||||
} |
||||
} |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,13 @@ |
||||
{ |
||||
"require": { |
||||
"vimeo/psalm": "^4.18" |
||||
}, |
||||
"config": { |
||||
"platform": { |
||||
"php": "7.3" |
||||
}, |
||||
"allow-plugins": { |
||||
"composer/package-versions-deprecated": true |
||||
} |
||||
} |
||||
} |
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue