├── LICENSE.md ├── README.md ├── composer.json ├── config └── preload.php ├── src ├── Compiler │ ├── Compiler.php │ └── Pipes │ │ ├── EnsureDirectoryExists.php │ │ ├── FireEvent.php │ │ ├── LoadPreloaderStub.php │ │ ├── LoadStatisticsStub.php │ │ ├── SetOpcacheConfig.php │ │ ├── SetPreloadConfig.php │ │ ├── SetStatistics.php │ │ ├── WriteListFile.php │ │ ├── WritePreloaderFile.php │ │ └── WriteStatisticsFile.php ├── Composer.php ├── Condition.php ├── Console │ └── Commands │ │ └── Stub.php ├── Events │ ├── ListGenerated.php │ └── PreloadGenerated.php ├── Exceptions │ └── PreloadException.php ├── Facades │ └── Preload.php ├── Http │ └── Middleware │ │ └── PreloadMiddleware.php ├── Jobs │ └── StorePreloadScript.php ├── Lister │ ├── Lister.php │ └── Pipes │ │ ├── Concerns │ │ └── RetrievesFilesFromFinder.php │ │ ├── CutListByMemoryLimit.php │ │ ├── ExcludePreloadVariable.php │ │ ├── FireEvent.php │ │ ├── LoadAcceleratedFiles.php │ │ ├── LoadIncludedAndExcludedLibraries.php │ │ ├── LoadOpcacheConfig.php │ │ ├── MayExcludeFiles.php │ │ ├── MayIncludeFiles.php │ │ ├── MayScopeFilesToProjectPath.php │ │ ├── NormalizeList.php │ │ └── SortScriptsByHitRatio.php ├── Listing.php ├── Opcache.php ├── PreloadServiceProvider.php └── Preloader.php └── stubs ├── preload.php.stub └── statistics.md /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/composer.json -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/config/preload.php -------------------------------------------------------------------------------- /src/Compiler/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Compiler.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/EnsureDirectoryExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/EnsureDirectoryExists.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/FireEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/FireEvent.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/LoadPreloaderStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/LoadPreloaderStub.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/LoadStatisticsStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/LoadStatisticsStub.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/SetOpcacheConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/SetOpcacheConfig.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/SetPreloadConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/SetPreloadConfig.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/SetStatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/SetStatistics.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/WriteListFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/WriteListFile.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/WritePreloaderFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/WritePreloaderFile.php -------------------------------------------------------------------------------- /src/Compiler/Pipes/WriteStatisticsFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Compiler/Pipes/WriteStatisticsFile.php -------------------------------------------------------------------------------- /src/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Composer.php -------------------------------------------------------------------------------- /src/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Condition.php -------------------------------------------------------------------------------- /src/Console/Commands/Stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Console/Commands/Stub.php -------------------------------------------------------------------------------- /src/Events/ListGenerated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Events/ListGenerated.php -------------------------------------------------------------------------------- /src/Events/PreloadGenerated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Events/PreloadGenerated.php -------------------------------------------------------------------------------- /src/Exceptions/PreloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Exceptions/PreloadException.php -------------------------------------------------------------------------------- /src/Facades/Preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Facades/Preload.php -------------------------------------------------------------------------------- /src/Http/Middleware/PreloadMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Http/Middleware/PreloadMiddleware.php -------------------------------------------------------------------------------- /src/Jobs/StorePreloadScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Jobs/StorePreloadScript.php -------------------------------------------------------------------------------- /src/Lister/Lister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Lister.php -------------------------------------------------------------------------------- /src/Lister/Pipes/Concerns/RetrievesFilesFromFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/Concerns/RetrievesFilesFromFinder.php -------------------------------------------------------------------------------- /src/Lister/Pipes/CutListByMemoryLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/CutListByMemoryLimit.php -------------------------------------------------------------------------------- /src/Lister/Pipes/ExcludePreloadVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/ExcludePreloadVariable.php -------------------------------------------------------------------------------- /src/Lister/Pipes/FireEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/FireEvent.php -------------------------------------------------------------------------------- /src/Lister/Pipes/LoadAcceleratedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/LoadAcceleratedFiles.php -------------------------------------------------------------------------------- /src/Lister/Pipes/LoadIncludedAndExcludedLibraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/LoadIncludedAndExcludedLibraries.php -------------------------------------------------------------------------------- /src/Lister/Pipes/LoadOpcacheConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/LoadOpcacheConfig.php -------------------------------------------------------------------------------- /src/Lister/Pipes/MayExcludeFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/MayExcludeFiles.php -------------------------------------------------------------------------------- /src/Lister/Pipes/MayIncludeFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/MayIncludeFiles.php -------------------------------------------------------------------------------- /src/Lister/Pipes/MayScopeFilesToProjectPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/MayScopeFilesToProjectPath.php -------------------------------------------------------------------------------- /src/Lister/Pipes/NormalizeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/NormalizeList.php -------------------------------------------------------------------------------- /src/Lister/Pipes/SortScriptsByHitRatio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Lister/Pipes/SortScriptsByHitRatio.php -------------------------------------------------------------------------------- /src/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Listing.php -------------------------------------------------------------------------------- /src/Opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Opcache.php -------------------------------------------------------------------------------- /src/PreloadServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/PreloadServiceProvider.php -------------------------------------------------------------------------------- /src/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/src/Preloader.php -------------------------------------------------------------------------------- /stubs/preload.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/stubs/preload.php.stub -------------------------------------------------------------------------------- /stubs/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/Preload/HEAD/stubs/statistics.md --------------------------------------------------------------------------------