Page MenuHomeWickedGov Phorge

ComposerInstalled.php
No OneTemporary

Size
961 B
Referenced Files
None
Subscribers
None

ComposerInstalled.php

<?php
namespace Wikimedia\Composer;
/**
* 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() {
$contents = $this->contents['packages'];
$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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Aug 18 2026, 12:16 (4 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
84/88/06af3573dc64105e1c8bb808f7e2
Default Alt Text
ComposerInstalled.php (961 B)

Event Timeline