Skip to content
Snippets Groups Projects
Commit 5c9d918f authored by Prasad's avatar Prasad
Browse files

Added composer bootstrap message if not installed

parent efe434e6
No related branches found
No related tags found
No related merge requests found
......@@ -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';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment