├── .gitattributes ├── .php-cs-fixer.php ├── .rr.http.yaml ├── README.md ├── codeception.yml ├── composer.json ├── config └── service.php ├── resource └── .phpstorm.meta.php │ ├── StreamedJsonResponse.php │ └── StreamedResponse.php ├── src ├── Bridge │ ├── Doctrine │ │ ├── ClearEntityManagerMiddleware.php │ │ ├── ConnectionPingMiddleware.php │ │ ├── PsrLoggingDoctrineOpenTransactionMiddleware.php │ │ └── SentryDoctrineOpenTransactionMiddleware.php │ ├── HttpFoundation │ │ ├── StreamedJsonResponse.php │ │ ├── StreamedResponse.php │ │ └── function.php │ ├── Sentry │ │ └── SentryScopeMiddleware.php │ └── VarDumper │ │ └── DumpMiddleware.php ├── DependencyInjection │ ├── Compiler │ │ ├── DoctrineCompilerPass.php │ │ ├── PipelineMiddlewareCompilerPass.php │ │ ├── RunnerCompilerPass.php │ │ ├── SentryCompilerPass.php │ │ └── VarDumperCompilerPass.php │ ├── Configuration.php │ ├── RoadRunnerHttpExtension.php │ └── function.php ├── InstalledVersions.php ├── Middleware │ ├── Middleware.php │ └── PipelineMiddleware.php ├── RoadRunnerHttpBundle.php └── Runtime │ ├── HttpRunner.php │ ├── HttpRuntime.php │ └── HttpWorker.php └── stubs └── codeception └── Example.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.rr.http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/.rr.http.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/README.md -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /config/service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/config/service.php -------------------------------------------------------------------------------- /resource/.phpstorm.meta.php/StreamedJsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/resource/.phpstorm.meta.php/StreamedJsonResponse.php -------------------------------------------------------------------------------- /resource/.phpstorm.meta.php/StreamedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/resource/.phpstorm.meta.php/StreamedResponse.php -------------------------------------------------------------------------------- /src/Bridge/Doctrine/ClearEntityManagerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/Doctrine/ClearEntityManagerMiddleware.php -------------------------------------------------------------------------------- /src/Bridge/Doctrine/ConnectionPingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/Doctrine/ConnectionPingMiddleware.php -------------------------------------------------------------------------------- /src/Bridge/Doctrine/PsrLoggingDoctrineOpenTransactionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/Doctrine/PsrLoggingDoctrineOpenTransactionMiddleware.php -------------------------------------------------------------------------------- /src/Bridge/Doctrine/SentryDoctrineOpenTransactionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/Doctrine/SentryDoctrineOpenTransactionMiddleware.php -------------------------------------------------------------------------------- /src/Bridge/HttpFoundation/StreamedJsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/HttpFoundation/StreamedJsonResponse.php -------------------------------------------------------------------------------- /src/Bridge/HttpFoundation/StreamedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/HttpFoundation/StreamedResponse.php -------------------------------------------------------------------------------- /src/Bridge/HttpFoundation/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/HttpFoundation/function.php -------------------------------------------------------------------------------- /src/Bridge/Sentry/SentryScopeMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/Sentry/SentryScopeMiddleware.php -------------------------------------------------------------------------------- /src/Bridge/VarDumper/DumpMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Bridge/VarDumper/DumpMiddleware.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/DoctrineCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Compiler/DoctrineCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/PipelineMiddlewareCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Compiler/PipelineMiddlewareCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RunnerCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Compiler/RunnerCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/SentryCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Compiler/SentryCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/VarDumperCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Compiler/VarDumperCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/RoadRunnerHttpExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/RoadRunnerHttpExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/DependencyInjection/function.php -------------------------------------------------------------------------------- /src/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/InstalledVersions.php -------------------------------------------------------------------------------- /src/Middleware/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Middleware/Middleware.php -------------------------------------------------------------------------------- /src/Middleware/PipelineMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Middleware/PipelineMiddleware.php -------------------------------------------------------------------------------- /src/RoadRunnerHttpBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/RoadRunnerHttpBundle.php -------------------------------------------------------------------------------- /src/Runtime/HttpRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Runtime/HttpRunner.php -------------------------------------------------------------------------------- /src/Runtime/HttpRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Runtime/HttpRuntime.php -------------------------------------------------------------------------------- /src/Runtime/HttpWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/src/Runtime/HttpWorker.php -------------------------------------------------------------------------------- /stubs/codeception/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roadrunner-symfony/http-bundle/HEAD/stubs/codeception/Example.php --------------------------------------------------------------------------------