4 * Reads an installed.json file and provides accessors to get what is
9 class ComposerInstalled
{
12 * @param string $location
14 public function __construct( $location ) {
15 $this->contents
= json_decode( file_get_contents( $location ), true );
19 * Dependencies currently installed according to installed.json
23 public function getInstalledDependencies() {
25 foreach ( $this->contents
as $installed ) {
26 $deps[$installed['name']] = [
27 'version' => ComposerJson
::normalizeVersion( $installed['version'] ),
28 'type' => $installed['type'],
29 'licenses' => isset( $installed['license'] ) ?
$installed['license'] : [],
30 'authors' => isset( $installed['authors'] ) ?
$installed['authors'] : [],
31 'description' => isset( $installed['description'] ) ?
$installed['description']: '',