-
Notifications
You must be signed in to change notification settings - Fork 0
/
excep
32 lines (26 loc) · 910 Bytes
/
excep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env php
<?php
declare(strict_types=1);
if (isset($GLOBALS['_composer_autoload_path'])) {
define('INSTALLED_AUTOLOAD_EXCEPTION_PATH', $GLOBALS['_composer_autoload_path']);
unset($GLOBALS['_composer_autoload_path']);
} else {
foreach([__DIR__.'/../vendor/autoload.php', __DIR__.'/../../vendor/autoload.php', __DIR__ . '/vendor/autoload.php'] as $autoloader) {
if (\file_exists($autoloader)) {
define('INSTALLED_AUTOLOAD_EXCEPTION_PATH', $autoloader);
break;
}
}
}
if (!defined('INSTALLED_AUTOLOAD_EXCEPTION_PATH')) {
fwrite(
STDERR,
'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
' composer install' . PHP_EOL . PHP_EOL .
'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
);
die(1);
}
require INSTALLED_AUTOLOAD_EXCEPTION_PATH;
Modassir\Exception\Exception::argv($argv)->run();
?>