/var/www/cobraambalaj/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.php51550755editdlrm
Application.php387630755editdlrm
ComposerScripts.php15300644editdlrm
EnvironmentDetector.php19650644editdlrm
helpers.php228530644editdlrm
Inspiring.php26160644editdlrm
Mix.php19090644editdlrm
PackageManifest.php43730644editdlrm
ProviderRepository.php64300755editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/ComposerScripts.php (1530B)
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($servicesPath = $laravel->getCachedServicesPath())) { @unlink($servicesPath); } if (is_file($packagesPath = $laravel->getCachedPackagesPath())) { @unlink($packagesPath); } } }