bref
bref copied to clipboard
Serverless PHP on AWS Lambda
Added note about removing unused AWS services to reduce bundle size.
Following: https://github.com/brefphp/laravel-bridge/issues/189 It parses "Content-Disposition: form-data" incorrectly for list arrays, specifically in arrays like: ``` references[0][some_id]: 4390954279 references[0][url]: references[1][some_id]: 4313323164 references[1][url]: references[2][some_id]: references[2][url]: https://someurl.com/node/745911 ``` It parses into separate array...
With Lambda Function URLs supporting `RESPONSE_STREAM`, we can make the `HttpHandler` implementations return an `StreamedHttpResponse` instance which supports iterating over a `Generator` and streams the contents as they are received....