diff options
Diffstat (limited to 'phpMyAdmin-bundled.php')
-rw-r--r-- | phpMyAdmin-bundled.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpMyAdmin-bundled.php b/phpMyAdmin-bundled.php index ee018ef..bf8a5bf 100644 --- a/phpMyAdmin-bundled.php +++ b/phpMyAdmin-bundled.php @@ -22,7 +22,7 @@ if (isset($pkgs['packages'])) { foreach($pkgs["packages"] as $pkg) { $lic = implode(" and ", $pkg["license"]); if (!isset($res[$lic])) $res[$lic] = []; - $res[$lic][] = sprintf("Provides: bundled(php-%s) = %s", str_replace(["/", "_"], ["-", "-"], $pkg["name"]), $pkg["version"]); + $res[$lic][] = sprintf("Provides: bundled(php-composer(%s)) = %s", $pkg["name"], ltrim($pkg["version"], "v")); } ksort($res); foreach($res as $lic => $lib) { |