├── LICENSE.md ├── README.md ├── art └── logo.svg ├── bin ├── WorkerState.php ├── bootstrap.php ├── createSwooleCacheTable.php ├── createSwooleServer.php ├── createSwooleTables.php ├── createSwooleTimerTable.php ├── file-watcher.cjs ├── frankenphp-worker.php ├── roadrunner-worker └── swoole-server ├── composer.json ├── config └── octane.php ├── fixes ├── fix-symfony-dd.php ├── fix-symfony-file-moving.php └── fix-symfony-file-validation.php └── src ├── ApplicationFactory.php ├── ApplicationGateway.php ├── Cache ├── OctaneArrayStore.php └── OctaneStore.php ├── Commands ├── Command.php ├── Concerns │ ├── InstallsFrankenPhpDependencies.php │ ├── InstallsRoadRunnerDependencies.php │ ├── InteractsWithEnvironmentVariables.php │ ├── InteractsWithIO.php │ ├── InteractsWithServers.php │ └── InteractsWithTerminal.php ├── InstallCommand.php ├── ReloadCommand.php ├── StartCommand.php ├── StartFrankenPhpCommand.php ├── StartRoadRunnerCommand.php ├── StartSwooleCommand.php ├── StatusCommand.php ├── StopCommand.php └── stubs │ ├── Caddyfile │ ├── frankenphp-worker.php │ └── rr.yaml ├── Concerns ├── ProvidesConcurrencySupport.php ├── ProvidesDefaultConfigurationOptions.php ├── ProvidesRouting.php └── RegistersTickHandlers.php ├── Contracts ├── Client.php ├── DispatchesCoroutines.php ├── DispatchesTasks.php ├── OperationTerminated.php ├── ServerProcessInspector.php ├── ServesStaticFiles.php ├── StoppableClient.php └── Worker.php ├── CurrentApplication.php ├── DispatchesEvents.php ├── Events ├── HasApplicationAndSandbox.php ├── RequestHandled.php ├── RequestReceived.php ├── RequestTerminated.php ├── TaskReceived.php ├── TaskTerminated.php ├── TickReceived.php ├── TickTerminated.php ├── WorkerErrorOccurred.php ├── WorkerStarting.php └── WorkerStopping.php ├── Exceptions ├── DdException.php ├── ServerShutdownException.php ├── TaskException.php ├── TaskExceptionResult.php ├── TaskTimeoutException.php ├── ValueTooLargeForColumnException.php └── WorkerException.php ├── Exec.php ├── Facades └── Octane.php ├── FrankenPhp ├── Concerns │ └── FindsFrankenPhpBinary.php ├── FrankenPhpClient.php ├── ServerProcessInspector.php └── ServerStateFile.php ├── Listeners ├── CloseMonologHandlers.php ├── CollectGarbage.php ├── CreateConfigurationSandbox.php ├── CreateUrlGeneratorSandbox.php ├── DisconnectFromDatabases.php ├── EnforceRequestScheme.php ├── EnsureRequestServerPortMatchesScheme.php ├── EnsureUploadedFilesAreValid.php ├── EnsureUploadedFilesCanBeMoved.php ├── FlushArrayCache.php ├── FlushAuthenticationState.php ├── FlushDatabaseQueryLog.php ├── FlushDatabaseRecordModificationState.php ├── FlushLocaleState.php ├── FlushLogContext.php ├── FlushMonologState.php ├── FlushOnce.php ├── FlushQueuedCookies.php ├── FlushSessionState.php ├── FlushStrCache.php ├── FlushTemporaryContainerInstances.php ├── FlushTranslatorCache.php ├── FlushUploadedFiles.php ├── FlushVite.php ├── GiveNewApplicationInstanceToAuthorizationGate.php ├── GiveNewApplicationInstanceToBroadcastManager.php ├── GiveNewApplicationInstanceToCacheManager.php ├── GiveNewApplicationInstanceToDatabaseManager.php ├── GiveNewApplicationInstanceToDatabaseSessionHandler.php ├── GiveNewApplicationInstanceToFilesystemManager.php ├── GiveNewApplicationInstanceToHttpKernel.php ├── GiveNewApplicationInstanceToLogManager.php ├── GiveNewApplicationInstanceToMailManager.php ├── GiveNewApplicationInstanceToNotificationChannelManager.php ├── GiveNewApplicationInstanceToPipelineHub.php ├── GiveNewApplicationInstanceToQueueManager.php ├── GiveNewApplicationInstanceToRouter.php ├── GiveNewApplicationInstanceToSessionManager.php ├── GiveNewApplicationInstanceToValidationFactory.php ├── GiveNewApplicationInstanceToViewFactory.php ├── GiveNewRequestInstanceToApplication.php ├── GiveNewRequestInstanceToPaginator.php ├── PrepareInertiaForNextOperation.php ├── PrepareLivewireForNextOperation.php ├── PrepareScoutForNextOperation.php ├── PrepareSocialiteForNextOperation.php ├── RefreshQueryDurationHandling.php ├── ReportException.php └── StopWorkerIfNecessary.php ├── MarshalsPsr7RequestsAndResponses.php ├── MimeType.php ├── Octane.php ├── OctaneResponse.php ├── OctaneServiceProvider.php ├── PosixExtension.php ├── RequestContext.php ├── RoadRunner ├── Concerns │ └── FindsRoadRunnerBinary.php ├── RoadRunnerClient.php ├── ServerProcessInspector.php └── ServerStateFile.php ├── SequentialCoroutineDispatcher.php ├── SequentialTaskDispatcher.php ├── Stream.php ├── Swoole ├── Actions │ ├── ConvertSwooleRequestToIlluminateRequest.php │ └── EnsureRequestsDontExceedMaxExecutionTime.php ├── Handlers │ ├── OnManagerStart.php │ ├── OnServerStart.php │ └── OnWorkerStart.php ├── InvokeTickCallable.php ├── ServerProcessInspector.php ├── ServerStateFile.php ├── SignalDispatcher.php ├── SwooleClient.php ├── SwooleCoroutineDispatcher.php ├── SwooleExtension.php ├── SwooleHttpTaskDispatcher.php ├── SwooleTaskDispatcher.php └── TaskResult.php ├── SymfonyProcessFactory.php ├── Tables ├── Concerns │ └── EnsuresColumnSizes.php ├── OpenSwooleTable.php ├── SwooleTable.php └── TableFactory.php ├── Testing └── Fakes │ ├── FakeClient.php │ └── FakeWorker.php ├── Worker.php └── WorkerExceptionInspector.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/README.md -------------------------------------------------------------------------------- /art/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/art/logo.svg -------------------------------------------------------------------------------- /bin/WorkerState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/WorkerState.php -------------------------------------------------------------------------------- /bin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/bootstrap.php -------------------------------------------------------------------------------- /bin/createSwooleCacheTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/createSwooleCacheTable.php -------------------------------------------------------------------------------- /bin/createSwooleServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/createSwooleServer.php -------------------------------------------------------------------------------- /bin/createSwooleTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/createSwooleTables.php -------------------------------------------------------------------------------- /bin/createSwooleTimerTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/createSwooleTimerTable.php -------------------------------------------------------------------------------- /bin/file-watcher.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/file-watcher.cjs -------------------------------------------------------------------------------- /bin/frankenphp-worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/frankenphp-worker.php -------------------------------------------------------------------------------- /bin/roadrunner-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/roadrunner-worker -------------------------------------------------------------------------------- /bin/swoole-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/bin/swoole-server -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/composer.json -------------------------------------------------------------------------------- /config/octane.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/config/octane.php -------------------------------------------------------------------------------- /fixes/fix-symfony-dd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/fixes/fix-symfony-dd.php -------------------------------------------------------------------------------- /fixes/fix-symfony-file-moving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/fixes/fix-symfony-file-moving.php -------------------------------------------------------------------------------- /fixes/fix-symfony-file-validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/fixes/fix-symfony-file-validation.php -------------------------------------------------------------------------------- /src/ApplicationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/ApplicationFactory.php -------------------------------------------------------------------------------- /src/ApplicationGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/ApplicationGateway.php -------------------------------------------------------------------------------- /src/Cache/OctaneArrayStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Cache/OctaneArrayStore.php -------------------------------------------------------------------------------- /src/Cache/OctaneStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Cache/OctaneStore.php -------------------------------------------------------------------------------- /src/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Command.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InstallsFrankenPhpDependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InstallsFrankenPhpDependencies.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InstallsRoadRunnerDependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InstallsRoadRunnerDependencies.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InteractsWithEnvironmentVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InteractsWithEnvironmentVariables.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InteractsWithIO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InteractsWithIO.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InteractsWithServers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InteractsWithServers.php -------------------------------------------------------------------------------- /src/Commands/Concerns/InteractsWithTerminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/Concerns/InteractsWithTerminal.php -------------------------------------------------------------------------------- /src/Commands/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/InstallCommand.php -------------------------------------------------------------------------------- /src/Commands/ReloadCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/ReloadCommand.php -------------------------------------------------------------------------------- /src/Commands/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StartCommand.php -------------------------------------------------------------------------------- /src/Commands/StartFrankenPhpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StartFrankenPhpCommand.php -------------------------------------------------------------------------------- /src/Commands/StartRoadRunnerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StartRoadRunnerCommand.php -------------------------------------------------------------------------------- /src/Commands/StartSwooleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StartSwooleCommand.php -------------------------------------------------------------------------------- /src/Commands/StatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StatusCommand.php -------------------------------------------------------------------------------- /src/Commands/StopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/StopCommand.php -------------------------------------------------------------------------------- /src/Commands/stubs/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/stubs/Caddyfile -------------------------------------------------------------------------------- /src/Commands/stubs/frankenphp-worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Commands/stubs/frankenphp-worker.php -------------------------------------------------------------------------------- /src/Commands/stubs/rr.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Concerns/ProvidesConcurrencySupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Concerns/ProvidesConcurrencySupport.php -------------------------------------------------------------------------------- /src/Concerns/ProvidesDefaultConfigurationOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Concerns/ProvidesDefaultConfigurationOptions.php -------------------------------------------------------------------------------- /src/Concerns/ProvidesRouting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Concerns/ProvidesRouting.php -------------------------------------------------------------------------------- /src/Concerns/RegistersTickHandlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Concerns/RegistersTickHandlers.php -------------------------------------------------------------------------------- /src/Contracts/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/Client.php -------------------------------------------------------------------------------- /src/Contracts/DispatchesCoroutines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/DispatchesCoroutines.php -------------------------------------------------------------------------------- /src/Contracts/DispatchesTasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/DispatchesTasks.php -------------------------------------------------------------------------------- /src/Contracts/OperationTerminated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/OperationTerminated.php -------------------------------------------------------------------------------- /src/Contracts/ServerProcessInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/ServerProcessInspector.php -------------------------------------------------------------------------------- /src/Contracts/ServesStaticFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/ServesStaticFiles.php -------------------------------------------------------------------------------- /src/Contracts/StoppableClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/StoppableClient.php -------------------------------------------------------------------------------- /src/Contracts/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Contracts/Worker.php -------------------------------------------------------------------------------- /src/CurrentApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/CurrentApplication.php -------------------------------------------------------------------------------- /src/DispatchesEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/DispatchesEvents.php -------------------------------------------------------------------------------- /src/Events/HasApplicationAndSandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/HasApplicationAndSandbox.php -------------------------------------------------------------------------------- /src/Events/RequestHandled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/RequestHandled.php -------------------------------------------------------------------------------- /src/Events/RequestReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/RequestReceived.php -------------------------------------------------------------------------------- /src/Events/RequestTerminated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/RequestTerminated.php -------------------------------------------------------------------------------- /src/Events/TaskReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/TaskReceived.php -------------------------------------------------------------------------------- /src/Events/TaskTerminated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/TaskTerminated.php -------------------------------------------------------------------------------- /src/Events/TickReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/TickReceived.php -------------------------------------------------------------------------------- /src/Events/TickTerminated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/TickTerminated.php -------------------------------------------------------------------------------- /src/Events/WorkerErrorOccurred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/WorkerErrorOccurred.php -------------------------------------------------------------------------------- /src/Events/WorkerStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/WorkerStarting.php -------------------------------------------------------------------------------- /src/Events/WorkerStopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Events/WorkerStopping.php -------------------------------------------------------------------------------- /src/Exceptions/DdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/DdException.php -------------------------------------------------------------------------------- /src/Exceptions/ServerShutdownException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/ServerShutdownException.php -------------------------------------------------------------------------------- /src/Exceptions/TaskException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/TaskException.php -------------------------------------------------------------------------------- /src/Exceptions/TaskExceptionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/TaskExceptionResult.php -------------------------------------------------------------------------------- /src/Exceptions/TaskTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/TaskTimeoutException.php -------------------------------------------------------------------------------- /src/Exceptions/ValueTooLargeForColumnException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/ValueTooLargeForColumnException.php -------------------------------------------------------------------------------- /src/Exceptions/WorkerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exceptions/WorkerException.php -------------------------------------------------------------------------------- /src/Exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Exec.php -------------------------------------------------------------------------------- /src/Facades/Octane.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Facades/Octane.php -------------------------------------------------------------------------------- /src/FrankenPhp/Concerns/FindsFrankenPhpBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/FrankenPhp/Concerns/FindsFrankenPhpBinary.php -------------------------------------------------------------------------------- /src/FrankenPhp/FrankenPhpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/FrankenPhp/FrankenPhpClient.php -------------------------------------------------------------------------------- /src/FrankenPhp/ServerProcessInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/FrankenPhp/ServerProcessInspector.php -------------------------------------------------------------------------------- /src/FrankenPhp/ServerStateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/FrankenPhp/ServerStateFile.php -------------------------------------------------------------------------------- /src/Listeners/CloseMonologHandlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/CloseMonologHandlers.php -------------------------------------------------------------------------------- /src/Listeners/CollectGarbage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/CollectGarbage.php -------------------------------------------------------------------------------- /src/Listeners/CreateConfigurationSandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/CreateConfigurationSandbox.php -------------------------------------------------------------------------------- /src/Listeners/CreateUrlGeneratorSandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/CreateUrlGeneratorSandbox.php -------------------------------------------------------------------------------- /src/Listeners/DisconnectFromDatabases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/DisconnectFromDatabases.php -------------------------------------------------------------------------------- /src/Listeners/EnforceRequestScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/EnforceRequestScheme.php -------------------------------------------------------------------------------- /src/Listeners/EnsureRequestServerPortMatchesScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/EnsureRequestServerPortMatchesScheme.php -------------------------------------------------------------------------------- /src/Listeners/EnsureUploadedFilesAreValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/EnsureUploadedFilesAreValid.php -------------------------------------------------------------------------------- /src/Listeners/EnsureUploadedFilesCanBeMoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/EnsureUploadedFilesCanBeMoved.php -------------------------------------------------------------------------------- /src/Listeners/FlushArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushArrayCache.php -------------------------------------------------------------------------------- /src/Listeners/FlushAuthenticationState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushAuthenticationState.php -------------------------------------------------------------------------------- /src/Listeners/FlushDatabaseQueryLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushDatabaseQueryLog.php -------------------------------------------------------------------------------- /src/Listeners/FlushDatabaseRecordModificationState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushDatabaseRecordModificationState.php -------------------------------------------------------------------------------- /src/Listeners/FlushLocaleState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushLocaleState.php -------------------------------------------------------------------------------- /src/Listeners/FlushLogContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushLogContext.php -------------------------------------------------------------------------------- /src/Listeners/FlushMonologState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushMonologState.php -------------------------------------------------------------------------------- /src/Listeners/FlushOnce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushOnce.php -------------------------------------------------------------------------------- /src/Listeners/FlushQueuedCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushQueuedCookies.php -------------------------------------------------------------------------------- /src/Listeners/FlushSessionState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushSessionState.php -------------------------------------------------------------------------------- /src/Listeners/FlushStrCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushStrCache.php -------------------------------------------------------------------------------- /src/Listeners/FlushTemporaryContainerInstances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushTemporaryContainerInstances.php -------------------------------------------------------------------------------- /src/Listeners/FlushTranslatorCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushTranslatorCache.php -------------------------------------------------------------------------------- /src/Listeners/FlushUploadedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushUploadedFiles.php -------------------------------------------------------------------------------- /src/Listeners/FlushVite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/FlushVite.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToAuthorizationGate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToAuthorizationGate.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToBroadcastManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToBroadcastManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToCacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToCacheManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToDatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToDatabaseManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToDatabaseSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToDatabaseSessionHandler.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToFilesystemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToFilesystemManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToHttpKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToHttpKernel.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToLogManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToLogManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToMailManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToMailManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToNotificationChannelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToNotificationChannelManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToPipelineHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToPipelineHub.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToQueueManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToQueueManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToRouter.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToSessionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToSessionManager.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToValidationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToValidationFactory.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewApplicationInstanceToViewFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewApplicationInstanceToViewFactory.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewRequestInstanceToApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewRequestInstanceToApplication.php -------------------------------------------------------------------------------- /src/Listeners/GiveNewRequestInstanceToPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/GiveNewRequestInstanceToPaginator.php -------------------------------------------------------------------------------- /src/Listeners/PrepareInertiaForNextOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/PrepareInertiaForNextOperation.php -------------------------------------------------------------------------------- /src/Listeners/PrepareLivewireForNextOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/PrepareLivewireForNextOperation.php -------------------------------------------------------------------------------- /src/Listeners/PrepareScoutForNextOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/PrepareScoutForNextOperation.php -------------------------------------------------------------------------------- /src/Listeners/PrepareSocialiteForNextOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/PrepareSocialiteForNextOperation.php -------------------------------------------------------------------------------- /src/Listeners/RefreshQueryDurationHandling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/RefreshQueryDurationHandling.php -------------------------------------------------------------------------------- /src/Listeners/ReportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/ReportException.php -------------------------------------------------------------------------------- /src/Listeners/StopWorkerIfNecessary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Listeners/StopWorkerIfNecessary.php -------------------------------------------------------------------------------- /src/MarshalsPsr7RequestsAndResponses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/MarshalsPsr7RequestsAndResponses.php -------------------------------------------------------------------------------- /src/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/MimeType.php -------------------------------------------------------------------------------- /src/Octane.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Octane.php -------------------------------------------------------------------------------- /src/OctaneResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/OctaneResponse.php -------------------------------------------------------------------------------- /src/OctaneServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/OctaneServiceProvider.php -------------------------------------------------------------------------------- /src/PosixExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/PosixExtension.php -------------------------------------------------------------------------------- /src/RequestContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/RequestContext.php -------------------------------------------------------------------------------- /src/RoadRunner/Concerns/FindsRoadRunnerBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/RoadRunner/Concerns/FindsRoadRunnerBinary.php -------------------------------------------------------------------------------- /src/RoadRunner/RoadRunnerClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/RoadRunner/RoadRunnerClient.php -------------------------------------------------------------------------------- /src/RoadRunner/ServerProcessInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/RoadRunner/ServerProcessInspector.php -------------------------------------------------------------------------------- /src/RoadRunner/ServerStateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/RoadRunner/ServerStateFile.php -------------------------------------------------------------------------------- /src/SequentialCoroutineDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/SequentialCoroutineDispatcher.php -------------------------------------------------------------------------------- /src/SequentialTaskDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/SequentialTaskDispatcher.php -------------------------------------------------------------------------------- /src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Stream.php -------------------------------------------------------------------------------- /src/Swoole/Actions/ConvertSwooleRequestToIlluminateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/Actions/ConvertSwooleRequestToIlluminateRequest.php -------------------------------------------------------------------------------- /src/Swoole/Actions/EnsureRequestsDontExceedMaxExecutionTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/Actions/EnsureRequestsDontExceedMaxExecutionTime.php -------------------------------------------------------------------------------- /src/Swoole/Handlers/OnManagerStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/Handlers/OnManagerStart.php -------------------------------------------------------------------------------- /src/Swoole/Handlers/OnServerStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/Handlers/OnServerStart.php -------------------------------------------------------------------------------- /src/Swoole/Handlers/OnWorkerStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/Handlers/OnWorkerStart.php -------------------------------------------------------------------------------- /src/Swoole/InvokeTickCallable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/InvokeTickCallable.php -------------------------------------------------------------------------------- /src/Swoole/ServerProcessInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/ServerProcessInspector.php -------------------------------------------------------------------------------- /src/Swoole/ServerStateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/ServerStateFile.php -------------------------------------------------------------------------------- /src/Swoole/SignalDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SignalDispatcher.php -------------------------------------------------------------------------------- /src/Swoole/SwooleClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SwooleClient.php -------------------------------------------------------------------------------- /src/Swoole/SwooleCoroutineDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SwooleCoroutineDispatcher.php -------------------------------------------------------------------------------- /src/Swoole/SwooleExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SwooleExtension.php -------------------------------------------------------------------------------- /src/Swoole/SwooleHttpTaskDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SwooleHttpTaskDispatcher.php -------------------------------------------------------------------------------- /src/Swoole/SwooleTaskDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/SwooleTaskDispatcher.php -------------------------------------------------------------------------------- /src/Swoole/TaskResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Swoole/TaskResult.php -------------------------------------------------------------------------------- /src/SymfonyProcessFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/SymfonyProcessFactory.php -------------------------------------------------------------------------------- /src/Tables/Concerns/EnsuresColumnSizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Tables/Concerns/EnsuresColumnSizes.php -------------------------------------------------------------------------------- /src/Tables/OpenSwooleTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Tables/OpenSwooleTable.php -------------------------------------------------------------------------------- /src/Tables/SwooleTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Tables/SwooleTable.php -------------------------------------------------------------------------------- /src/Tables/TableFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Tables/TableFactory.php -------------------------------------------------------------------------------- /src/Testing/Fakes/FakeClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Testing/Fakes/FakeClient.php -------------------------------------------------------------------------------- /src/Testing/Fakes/FakeWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Testing/Fakes/FakeWorker.php -------------------------------------------------------------------------------- /src/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/Worker.php -------------------------------------------------------------------------------- /src/WorkerExceptionInspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/octane/HEAD/src/WorkerExceptionInspector.php --------------------------------------------------------------------------------