gitextract__wb9ole1/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── SUPPORT.md │ └── workflows/ │ ├── static-analysis.yml │ ├── tests.yml │ └── update-changelog.yml ├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config/ │ └── vapor.php ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src/ │ ├── Arr.php │ ├── ConfiguresAssets.php │ ├── ConfiguresDynamoDb.php │ ├── ConfiguresQueue.php │ ├── ConfiguresRedis.php │ ├── ConfiguresSqs.php │ ├── Console/ │ │ └── Commands/ │ │ ├── OctaneStatusCommand.php │ │ ├── VaporHealthCheckCommand.php │ │ ├── VaporQueueListFailedCommand.php │ │ ├── VaporScheduleCommand.php │ │ ├── VaporWorkCommand.php │ │ └── WritesQueueEventMessages.php │ ├── Contracts/ │ │ ├── LambdaEventHandler.php │ │ ├── LambdaResponse.php │ │ └── SignedStorageUrlController.php │ ├── DefinesRoutes.php │ ├── Events/ │ │ └── LambdaEvent.php │ ├── HasAwsContext.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ └── SignedStorageUrlController.php │ │ └── Middleware/ │ │ └── ServeStaticAssets.php │ ├── Logging/ │ │ └── JsonFormatter.php │ ├── Queue/ │ │ ├── JobAttempts.php │ │ ├── VaporConnector.php │ │ ├── VaporJob.php │ │ ├── VaporQueue.php │ │ └── VaporWorker.php │ ├── Runtime/ │ │ ├── ArrayLambdaResponse.php │ │ ├── CliHandlerFactory.php │ │ ├── Environment.php │ │ ├── Fpm/ │ │ │ ├── ActsAsFastCgiDataProvider.php │ │ │ ├── Fpm.php │ │ │ ├── FpmApplication.php │ │ │ ├── FpmHttpHandlerFactory.php │ │ │ ├── FpmRequest.php │ │ │ ├── FpmResponse.php │ │ │ └── FpmResponseHeaders.php │ │ ├── Handlers/ │ │ │ ├── CliHandler.php │ │ │ ├── FpmHandler.php │ │ │ ├── LoadBalancedFpmHandler.php │ │ │ ├── LoadBalancedOctaneHandler.php │ │ │ ├── OctaneHandler.php │ │ │ ├── PayloadFormatVersion2FpmHandler.php │ │ │ ├── PayloadFormatVersion2OctaneHandler.php │ │ │ ├── QueueHandler.php │ │ │ ├── UnknownEventHandler.php │ │ │ ├── WarmerHandler.php │ │ │ └── WarmerPingHandler.php │ │ ├── Http/ │ │ │ └── Middleware/ │ │ │ ├── EnsureBinaryEncoding.php │ │ │ ├── EnsureOnNakedDomain.php │ │ │ ├── EnsureVanityUrlIsNotIndexed.php │ │ │ └── RedirectStaticAssets.php │ │ ├── HttpKernel.php │ │ ├── LambdaContainer.php │ │ ├── LambdaInvocation.php │ │ ├── LambdaResponse.php │ │ ├── LambdaRuntime.php │ │ ├── LoadBalancedLambdaResponse.php │ │ ├── Logger.php │ │ ├── NotifiesLambda.php │ │ ├── Octane/ │ │ │ ├── Octane.php │ │ │ ├── OctaneHttpHandlerFactory.php │ │ │ └── OctaneRequestContextFactory.php │ │ ├── PayloadFormatVersion2LambdaResponse.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Secrets.php │ │ └── StorageDirectories.php │ ├── Vapor.php │ ├── VaporJobTimedOutException.php │ ├── VaporServiceProvider.php │ └── debug.php ├── stubs/ │ ├── 503.html │ ├── cliRuntime.php │ ├── fpmRuntime.php │ ├── httpHandler.php │ ├── httpRuntime.php │ ├── octaneRuntime.php │ ├── php-fpm.conf │ ├── rds-combined-ca-bundle.pem │ ├── runtime-with-vendor-download.php │ └── runtime.php └── tests/ ├── Feature/ │ ├── ApiGatewayOctaneHandlerTest.php │ ├── Commands/ │ │ └── OctaneStatusCommandTest.php │ ├── EnsureOnNakedDomainTest.php │ ├── LambdaProxyOctaneHandlerTest.php │ ├── LoadBalancedOctaneHandlerTest.php │ ├── OctaneManageDatabaseSessionsTest.php │ ├── OctaneTest.php │ ├── RedirectStaticAssetsTest.php │ ├── SignedStorageUrlEndpointTest.php │ ├── VaporJobTest.php │ └── VaporQueueTest.php ├── Fixtures/ │ ├── 503.json │ ├── asset.js │ ├── customLambdaEventFromSQS.json │ ├── customNonSQSLambdaEvent.json │ └── jobLambdaEventFromSQS.json ├── TestCase.php └── Unit/ ├── FakeJob.php ├── FpmRequestTest.php ├── HttpKernelTest.php ├── LambdaEventTest.php ├── LoadBalancedLambdaResponseTest.php ├── Logging/ │ └── JsonFormatterTest.php ├── OctaneHttpHandlerFactoryTest.php ├── QueueHandlerTest.php ├── Runtime/ │ └── CliHandlerFactoryTest.php ├── VaporConnectorTest.php ├── VaporScheduleCommandTest.php ├── VaporTest.php └── VaporWorkCommandTest.php