diff options
author | Remi Collet <remi@remirepo.net> | 2025-01-22 07:25:51 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-01-22 07:25:51 +0100 |
commit | 89588c4ca91a013bbd95f367f952e9cf22cf3ae4 (patch) | |
tree | a7570418b6afe95cc31d665449fa685c8e55ff24 /phpMyAdmin-bundled.php | |
parent | 23ec6581f7aea5d6f565808a888dd89de89c5fa4 (diff) |
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) { |