Author: Shivam Mathur (shivammathur) Committer: GitHub (web-flow) Pusher: shivammathur Date: 2025-09-10T11:37:05+05:30
Commit: https://github.com/php/web-php/commit/863c26f17cb9eb7735fab9ff2a0e71b89c4718dd Raw diff: https://github.com/php/web-php/commit/863c26f17cb9eb7735fab9ff2a0e71b89c4718dd.diff Merge pull request #1402 from alikon/joomla 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 83b34d237e..b60513b212 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 bfe35fa308..4548c745a3 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
