1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: William Desportes <williamdes@wdes.fr>
Date: Sat, 25 Jan 2025 00:44:14 +0100
Subject: Move the autoload to classes
Origin: vendor
Forwarded: not-needed
---
config/vendor_config.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/vendor_config.php b/config/vendor_config.php
index e069cec..aa0a517 100644
--- a/config/vendor_config.php
+++ b/config/vendor_config.php
@@ -11,7 +11,7 @@ return [
/**
* Path to a vendor autoload file. Useful when you want to have vendor dependencies somewhere else.
*/
- 'autoload_file' => ROOT_PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php',
+ 'autoload_file' => ROOT_PATH . 'classes' . DIRECTORY_SEPARATOR . 'autoload.php',
/**
* Path to the configuration file.
|