Skip to content

Commit f8ac2ec

Browse files
authored
Update supported PHP version on various apps (hestiacp#3167)
* Update PHP requirement for latest Symfony Framework * Update PHP Requirements for Drupal 10 * Add PHP 8.2 as an option for Laravel 9 * Remove PHP 7.3 from supported version for Nextcloud 25 * Add PHP 8.2 support for Wordpress 6.1
1 parent 0abf1d0 commit f8ac2ec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

web/src/app/WebApp/Installers/Drupal/DrupalSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class DrupalSetup extends BaseSetup {
3030
"template" => "drupal-composer",
3131
],
3232
"php" => [
33-
"supported" => ["8.0", "8.1"],
33+
"supported" => ["8.1", "8.2"],
3434
],
3535
],
3636
];

web/src/app/WebApp/Installers/Laravel/LaravelSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class LaravelSetup extends BaseSetup {
2626
"template" => "laravel",
2727
],
2828
"php" => [
29-
"supported" => ["8.0", "8.1"],
29+
"supported" => ["8.0", "8.1", "8.2"],
3030
],
3131
],
3232
];

web/src/app/WebApp/Installers/Nextcloud/NextcloudSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class NextcloudSetup extends BaseSetup {
2929
"template" => "owncloud",
3030
],
3131
"php" => [
32-
"supported" => ["7.3", "7.4", "8.0", "8.1"],
32+
"supported" => ["7.4", "8.0", "8.1"],
3333
],
3434
],
3535
];

web/src/app/WebApp/Installers/WordPress/WordPressSetup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class WordpressSetup extends BaseSetup {
6161
"template" => "wordpress",
6262
],
6363
"php" => [
64-
"supported" => ["7.4", "8.0", "8.1"],
64+
"supported" => ["7.4", "8.0", "8.1", "8.2"],
6565
],
6666
],
6767
];

0 commit comments

Comments
 (0)