Merge "FauxRequest: don’t override getValues()"
[lhc/web/wiklou.git] / includes / libs / composer / ComposerJson.php
index bb55ac6..f92759b 100644 (file)
@@ -7,26 +7,25 @@
  * @since 1.25
  */
 class ComposerJson {
+       /**
+        * @var array[]
+        */
+       private $contents;
 
        /**
         * @param string $location
         */
        public function __construct( $location ) {
-               $this->hash = md5_file( $location );
                $this->contents = json_decode( file_get_contents( $location ), true );
        }
 
-       public function getHash() {
-               return $this->hash;
-       }
-
        /**
         * Dependencies as specified by composer.json
         *
-        * @return array
+        * @return string[]
         */
        public function getRequiredDependencies() {
-               $deps = array();
+               $deps = [];
                if ( isset( $this->contents['require'] ) ) {
                        foreach ( $this->contents['require'] as $package => $version ) {
                                if ( $package !== "php" && strpos( $package, 'ext-' ) !== 0 ) {