MediaWiki REL1_31
ComposerLock.php
Go to the documentation of this file.
1<?php
2
10
14 public function __construct( $location ) {
15 $this->contents = json_decode( file_get_contents( $location ), true );
16 }
17
23 public function getInstalledDependencies() {
24 $deps = [];
25 foreach ( $this->contents['packages'] 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'] : '',
32 ];
33 }
34
35 return $deps;
36 }
37}
static normalizeVersion( $version)
Strip a leading "v" from the version name.
Reads a composer.lock file and provides accessors to get its hash and what is installed.
__construct( $location)
getInstalledDependencies()
Dependencies currently installed according to composer.lock.
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their contents
Definition database.txt:9