From 2d341a4cc41efe18bf9f03b2fb2d478ee81cd9b4 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Oct 08 2021 22:40:04 +0000 Subject: Use https links in PHP guidelines --- diff --git a/guidelines/modules/ROOT/pages/PHP.adoc b/guidelines/modules/ROOT/pages/PHP.adoc index 7fd219a..c8f4ba5 100644 --- a/guidelines/modules/ROOT/pages/PHP.adoc +++ b/guidelines/modules/ROOT/pages/PHP.adoc @@ -8,11 +8,11 @@ Fedora Packaging Guidelines for PHP addon modules There are basically 4 different kinds of PHP modules, which are packaged for Fedora: -* http://pecl.php.net[PECL] (PHP Extension Community Library) modules, +* https://pecl.php.net[PECL] (PHP Extension Community Library) modules, which are PHP modules usually written in C and are dynamically loaded by the PHP interpreter on startup. -* http://pear.php.net[PEAR] (PHP Extension and Application Repository) modules, +* https://pear.php.net[PEAR] (PHP Extension and Application Repository) modules, which are reusable components written in PHP, usually classes, which can be used in your own PHP applications and scripts by using e.g. the `+include()+` directive.