Compare commits

...

1 commit

Author SHA1 Message Date
9782c9d985 Fix loading autoload.php file in CLI eesyphp tool 2023-02-26 19:09:22 +01:00

10
eesyphp
View file

@ -4,6 +4,14 @@
use EesyPHP\App;
use EesyPHP\Cli;
require __DIR__."/vendor/autoload.php";
if (isset($_composer_autoload_path))
require $_composer_autoload_path;
else if (file_exists(__DIR__ . '/../../autoload.php'))
require __DIR__ . '/../../autoload.php';
else if (file_exists(__DIR__ . '/../vendor/autoload.php'))
require __DIR__ . '/../vendor/autoload.php';
else
die('Fail to find composer vendor/autoload.php file');
App::init(null, null, __DIR__);
Cli :: handle_args();