wiki.techinc.nl/includes/libs/composer/ComposerInstalled.php
mainframe98 9b8d6612c6 Support Composer 2.0 in ComposerInstalled
Composer 2.0 provides installed packages under the 'packages' key
in installed.json.

Bug: T266419
Change-Id: I80b690fde1653c7a15f8e211782fa8e60971daa9
2021-03-04 09:29:34 +01:00

45 lines
1 KiB
PHP

<?php
/**
* Reads an installed.json file and provides accessors to get what is
* installed
*
* @since 1.27
*/
class ComposerInstalled {
/**
* @var array[]
*/
private $contents;
/**
* @param string $location
*/
public function __construct( $location ) {
$this->contents = json_decode( file_get_contents( $location ), true );
}
/**
* Dependencies currently installed according to installed.json
*
* @return array[]
*/
public function getInstalledDependencies() {
// Composer version 2 provides the list of installed packages under the 'packages' key.
$contents = $this->contents['packages'] ?? $this->contents;
$deps = [];
foreach ( $contents as $installed ) {
$deps[$installed['name']] = [
'version' => ComposerJson::normalizeVersion( $installed['version'] ),
'type' => $installed['type'],
'licenses' => $installed['license'] ?? [],
'authors' => $installed['authors'] ?? [],
'description' => $installed['description'] ?? '',
];
}
ksort( $deps );
return $deps;
}
}