diff options
| -rw-r--r-- | checkpkgist.json | 15 | ||||
| -rwxr-xr-x | checkpkgist.php | 4 |
2 files changed, 14 insertions, 5 deletions
diff --git a/checkpkgist.json b/checkpkgist.json index d9e29d4..4eab6fc 100644 --- a/checkpkgist.json +++ b/checkpkgist.json @@ -34,7 +34,6 @@ "php-clue-http-proxy-react": "clue\/http-proxy-react", "php-clue-socks-react": "clue\/socks-react", "php-clue-reactphp-ssh-proxy": "clue\/reactphp-ssh-proxy", - "php-phpseclib3": "phpseclib\/phpseclib", "php-egulias-email-validator3": "egulias\/email-validator", "php-doctrine-cache2": "doctrine\/cache", "php-laminas-cli": "laminas\/laminas-cli", @@ -57,6 +56,16 @@ "php-sabre-http7": "sabre\/http", "php-solidworx-aspect": "solidworx\/aspect", "php-pecl-jsonpath": "supermetrics\/jsonpath", - "php-pecl-xpass": "remi\/xpass", + "php-snappy": "kjdev\/snappy", + "php-kjdev-bzip3": "kjdev\/bzip3", + "php-lz4": "kjdev\/lz4", + "php-brotli": "kjdev\/brotli", + "php-pecl-judy": "orieg\/judy", + "php-pecl-dbus": "pecl\/dbus", + "php-pecl-imagick-im7": "imagick\/imagick", + "php-noisebynorthwest-php-spx": "noisebynorthwest\/php-spx", + "php-girgias-csv": "girgias\/csv", + "php-xz": "mateuszanella\/php-ext-xz", + "php-phpmailer7": "phpmailer\/phpmailer", "phinx": "robmorgan\/phinx" -} +}
\ No newline at end of file diff --git a/checkpkgist.php b/checkpkgist.php index a57ab25..fc01ae8 100755 --- a/checkpkgist.php +++ b/checkpkgist.php @@ -39,7 +39,7 @@ if (!ini_get('date.timezone')) { define ('VERSION', '1.1.0-dev'); class PkgClient { - const URL = 'https://packagist.org/'; + const URL = 'https://repo.packagist.org/'; protected $cache; function __construct () { @@ -140,7 +140,7 @@ function run($name, $rpm) { if ($rpminfo) { $rpminfo = $rpminfo[0]; - $rpmmainver = $rpminfo['Version']; + $rpmmainver = str_replace('~', '', $rpminfo['Version']); } else { if ($quiet) { return; |
