Skip to content

Commit 519becf

Browse files
authored
feat: add PHP8.3 support for Drupal and Laravel installation (hestiacp#4501)
* feat: add PHP 8.3 support for Drupal installation * feat: add PHP 8.3 support for laravel installation
1 parent bf63228 commit 519becf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.1", "8.2"],
33+
"supported" => ["8.1", "8.2", "8.3"],
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.1", "8.2"],
29+
"supported" => ["8.1", "8.2", "8.3"],
3030
],
3131
],
3232
];

0 commit comments

Comments
 (0)