Преглед изворни кода

feat: add PHP8.3 support for Drupal and Laravel installation (#4501)

* feat: add PHP 8.3 support for Drupal installation

* feat: add PHP 8.3 support for laravel installation
Dadang NH пре 1 година
родитељ
комит
519becf8ef

+ 1 - 1
web/src/app/WebApp/Installers/Drupal/DrupalSetup.php

@@ -30,7 +30,7 @@ class DrupalSetup extends BaseSetup {
 				"template" => "drupal-composer",
 			],
 			"php" => [
-				"supported" => ["8.1", "8.2"],
+				"supported" => ["8.1", "8.2", "8.3"],
 			],
 		],
 	];

+ 1 - 1
web/src/app/WebApp/Installers/Laravel/LaravelSetup.php

@@ -26,7 +26,7 @@ class LaravelSetup extends BaseSetup {
 				"template" => "laravel",
 			],
 			"php" => [
-				"supported" => ["8.1", "8.2"],
+				"supported" => ["8.1", "8.2", "8.3"],
 			],
 		],
 	];