Author: alikon (alikon) Pusher: shivammathur Date: 2025-09-08T16:37:35+02:00
Commit: https://github.com/php/web-php/commit/1db0b73233e76259aab67e72b94960603efb32f2 Raw diff: https://github.com/php/web-php/commit/1db0b73233e76259aab67e72b94960603efb32f2.diff add joomla Changed paths: A include/download-instructions/fw-joomla.php M downloads-get-instructions.php M downloads.php Diff: diff --git a/downloads-get-instructions.php b/downloads-get-instructions.php index aabc617978..ed31e9eff9 100644 --- a/downloads-get-instructions.php +++ b/downloads-get-instructions.php @@ -26,7 +26,7 @@ } } -if (in_array($options['usage'], ['fw-drupal', 'fw-laravel', 'fw-symfony', 'fw-wordpress'])) { +if (in_array($options['usage'], ['fw-drupal', 'fw-laravel', 'fw-symfony', 'fw-wordpress', 'fw-joomla'])) { $file = "{$options['usage']}"; $options['os'] = null; } diff --git a/downloads.php b/downloads.php index 4029a263a9..b549a658b7 100644 --- a/downloads.php +++ b/downloads.php @@ -55,6 +55,7 @@ function option(string $value, string $desc, $attributes = []): string 'web' => 'Web Development', 'cli' => 'CLI/Library Development', 'fw-drupal' => 'Drupal Development', + 'fw-joomla' => 'Joomla Development', 'fw-laravel' => 'Laravel Development', 'fw-symfony' => 'Symfony Development', 'fw-wordpress' => 'WordPress Development', diff --git a/include/download-instructions/fw-joomla.php b/include/download-instructions/fw-joomla.php new file mode 100644 index 0000000000..1173ee7a98 --- /dev/null +++ b/include/download-instructions/fw-joomla.php @@ -0,0 +1,6 @@ +<p> +Instructions for installing PHP for Joomla! development can be found on: +</p> +<p> +ยป <a href='https://manual.joomla.org/docs/get-started/'>https://manual.joomla.org/docs/get-started/</a> +</p> \ No newline at end of file
