From 55d9cf592c48e2829296bc8889cd8c72c779b4e2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 27 Jul 2014 17:56:28 +0200 Subject: add report for Composer libraries --- rpm.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'rpm.php') diff --git a/rpm.php b/rpm.php index b456554..88de40d 100644 --- a/rpm.php +++ b/rpm.php @@ -38,7 +38,9 @@ require 'include/main.php'; $what=(isset($_GET["what"]) ? $_GET["what"] : "%fedora"); $type=(isset($_GET["type"]) ? $_GET["type"] : "pecl"); - +if (!in_array($type, array('composer', 'pecl', 'pear', 'R'))) { + $type = 'pecl'; +} $ariane[] = array( 'url' => '#', 'text' => strtoupper($type). ' extensions in Fedora' @@ -246,6 +248,7 @@ try { case "pecl": $filter = 'php-pecl-%'; break; + case "composer": case "pear": $filter = 'php-%'; break; -- cgit