4 * Reads a composer.lock file and provides accessors to get
5 * its hash and what is installed
12 * @param string $location
14 public function __construct( $location ) {
15 $this->contents
= json_decode( file_get_contents( $location ), true );
18 public function getHash() {
19 return $this->contents
['hash'];
23 * Dependencies currently installed according to composer.lock
27 public function getInstalledDependencies() {
29 foreach ( $this->contents
['packages'] as $installed ) {
30 $deps[$installed['name']] = [
31 'version' => ComposerJson
::normalizeVersion( $installed['version'] ),
32 'type' => $installed['type'],
33 'licenses' => isset( $installed['license'] ) ?
$installed['license'] : [],
34 'authors' => isset( $installed['authors'] ) ?
$installed['authors'] : [],
35 'description' => isset( $installed['description'] ) ?
$installed['description']: '',