/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Foundation
NameSizeModeActions
Auth/-0755rm
Bootstrap/-0755rm
Bus/-0755rm
Console/-0755rm
Events/-0755rm
Exceptions/-0755rm
Http/-0755rm
Providers/-0755rm
stubs/-0755rm
Support/-0755rm
Testing/-0755rm
Validation/-0755rm
AliasLoader.php51550644editdlrm
Application.php384130644editdlrm
ComposerScripts.php16450644editdlrm
EnvironmentDetector.php19650644editdlrm
helpers.php233160644editdlrm
Inspiring.php30660644editdlrm
Mix.php20960644editdlrm
PackageManifest.php43730644editdlrm
ProviderRepository.php64300644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php (1645B)
getComposer()->getConfig()->get('vendor-dir').'/autoload.php'; static::clearCompiled(); } /** * Handle the post-update Composer event. * * @param \Composer\Script\Event $event * @return void */ public static function postUpdate(Event $event) { require_once $event->getComposer()->getConfig()->get('vendor-dir').'/autoload.php'; static::clearCompiled(); } /** * Handle the post-autoload-dump Composer event. * * @param \Composer\Script\Event $event * @return void */ public static function postAutoloadDump(Event $event) { require_once $event->getComposer()->getConfig()->get('vendor-dir').'/autoload.php'; static::clearCompiled(); } /** * Clear the cached Laravel bootstrapping files. * * @return void */ protected static function clearCompiled() { $laravel = new Application(getcwd()); if (is_file($configPath = $laravel->getCachedConfigPath())) { @unlink($configPath); } if (is_file($servicesPath = $laravel->getCachedServicesPath())) { @unlink($servicesPath); } if (is_file($packagesPath = $laravel->getCachedPackagesPath())) { @unlink($packagesPath); } } }