We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d9f11 commit 290b4d0Copy full SHA for 290b4d0
1 file changed
system/Test/bootstrap.php
@@ -84,20 +84,6 @@ class_alias('Config\Services', 'CodeIgniter\Services');
84
// Initialize and register the loader with the SPL autoloader stack.
85
Services::autoloader()->initialize(new Autoload(), new Modules())->register();
86
87
-// Now load Composer's if it's available
88
-if (is_file(COMPOSER_PATH)) {
89
- /*
90
- * The path to the vendor directory.
91
- *
92
- * We do not want to enforce this, so set the constant if Composer was used.
93
- */
94
- if (! defined('VENDORPATH')) {
95
- define('VENDORPATH', realpath(ROOTPATH . 'vendor') . DIRECTORY_SEPARATOR);
96
- }
97
-
98
- require_once COMPOSER_PATH;
99
-}
100
101
// Load environment settings from .env files into $_SERVER and $_ENV
102
require_once SYSTEMPATH . 'Config/DotEnv.php';
103
0 commit comments