autoload.php 450 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. (function () {
  4. foreach ([
  5. 'vendor/autoload.php',
  6. '../vendor/autoload.php',
  7. '../../vendor/autoload.php',
  8. '../../../vendor/autoload.php',
  9. '../../../../vendor/autoload.php'
  10. ] as $file) {
  11. if (is_file($file)) {
  12. /** @noinspection PhpIncludeInspection */
  13. include $file;
  14. }
  15. }
  16. })();