From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Wed, 7 Mar 2018 17:10:58 -1000
Subject: Workaround the lack of PackageVersions

Forwarded: not-needed
---
 src/ProxyManager/Generator/Util/IdentifierSuffixer.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ProxyManager/Generator/Util/IdentifierSuffixer.php b/src/ProxyManager/Generator/Util/IdentifierSuffixer.php
index e7bd273..b290fe4 100644
--- a/src/ProxyManager/Generator/Util/IdentifierSuffixer.php
+++ b/src/ProxyManager/Generator/Util/IdentifierSuffixer.php
@@ -4,7 +4,7 @@ declare(strict_types=1);
 
 namespace ProxyManager\Generator\Util;
 
-use PackageVersions\Versions;
+use Proxymanager\Version;
 
 /**
  * Utility class capable of generating
@@ -45,6 +45,6 @@ abstract class IdentifierSuffixer
 
     private static function loadBaseHashSalt() : string
     {
-        return \sha1(\serialize(Versions::VERSIONS));
+        return \sha1(\serialize(Version::getVersion()));
     }
 }
