composer
2 days ago
guzzlehttp
2 days ago
psr
2 days ago
ralouphie
2 days ago
symfony
2 days ago
autoload.php
2 days ago
custom-autoload.php
2 days ago
custom-autoload.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * THIS IS A MANUALLY CREATED FILE AND NEEDS TO BE MANUALLY UPDATED |
| 4 | * |
| 5 | * When composer dump-autoload is called autoload_files.php is not generated for some reason, this file manually includes the files from autoload_files.php |
| 6 | * |
| 7 | * TODO: look into why autoload_files.php is not generated |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | $vendorDir = __DIR__; |
| 12 | |
| 13 | $load_files = array( |
| 14 | '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', |
| 15 | '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', |
| 16 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', |
| 17 | ); |
| 18 | |
| 19 | foreach ( $load_files as $load_file ) { |
| 20 | require $load_file; |
| 21 | } |
| 22 | |
| 23 | include __DIR__ . '/autoload.php'; |
| 24 |