From 5c9d918f5b3c9b6a70c6c79c5057fdeacc423e95 Mon Sep 17 00:00:00 2001
From: Prasad <prasad@vtiger.com>
Date: Fri, 21 Jul 2023 20:40:48 +0530
Subject: [PATCH] Added composer bootstrap message if not installed

---
 index.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/index.php b/index.php
index 874a8770f..1674d1d93 100644
--- a/index.php
+++ b/index.php
@@ -8,6 +8,11 @@
  * All Rights Reserved.
  ************************************************************************************/
 
+if (!file_exists("vendor/autoload.php")) {
+    echo "Please install composer dependencies.";
+    exit;
+}
+
 //Overrides GetRelatedList : used to get related query
 //TODO : Eliminate below hacking solution
 include_once 'config.php';
-- 
GitLab