Browse Source

use HHVM_VERSION

this one is better (they are the same)
Paul Tarjan 11 years ago
parent
commit
ddec582ca1
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/Composer/Repository/PlatformRepository.php

+ 3 - 3
src/Composer/Repository/PlatformRepository.php

@@ -146,12 +146,12 @@ class PlatformRepository extends ArrayRepository
             parent::addPackage($lib);
         }
 
-        if (defined('HPHP_VERSION')) {
+        if (defined('HHVM_VERSION')) {
             try {
-                $prettyVersion = HPHP_VERSION;
+                $prettyVersion = HHVM_VERSION;
                 $version = $versionParser->normalize($prettyVersion);
             } catch (\UnexpectedValueException $e) {
-                $prettyVersion = preg_replace('#^([^~+-]+).*$#', '$1', HPHP_VERSION);
+                $prettyVersion = preg_replace('#^([^~+-]+).*$#', '$1', HHVM_VERSION);
                 $version = $versionParser->normalize($prettyVersion);
             }