<?phpif(file_exists(__DIR__.'/../vendor/autoload.php')){// Dependencies were installed with Composer and this is the main project$loader=require_once__DIR__.'/../vendor/autoload.php';}elseif(file_exists(__DIR__.'/../../../../autoload.php')){// We're installed as a dependency in another project's `vendor` directory$loader=require_once__DIR__.'/../../../../autoload.php';}else{thrownewException('Can\'t find autoload.php. Did you install dependencies with Composer?');}