bref
bref copied to clipboard
Serverless PHP on AWS Lambda
AWS' answer to infrastructure as code has been CloudFormation. Since that's kind of verbose to write they're working on [CDK](https://docs.aws.amazon.com/cdk/) in which you write real code (js/ts, python ...) to...
**Description** When making a request to `/orders?billingAddress.surname=test` and accessing the value of `$_SERVER['QUERY_STRING']` the expected value should be: ``` billingAddress.surname=test ``` Instead the value is: ``` billingAddress_surname=test ``` When testing...
Glad to see ALB support in the latest release: https://github.com/brefphp/bref/pull/338 Would love to see some official documentation on its usage.
See https://github.com/brefphp/bref/pull/709#issuecomment-671974973
Add documentation regarding Lambda with the following points (suggestions): - Is it possible when using layers/php ? - Does it need to be deployed in a special region? - Basic...
I'd like documentation about CloudWatch alarms. I'm not fluent in that topic yet but i'll have to experiment with it in the future so I can add something in the...
From #593, the idea was first to allow the user to configure php fpm by themselves. A directive like `include=/var/task/php/fpm/conf.d/*.conf` was added. That failed because the user had to specify...
The website https://runtimes.bref.sh/ will show the available runtimes in the different regions. The last column contains a "version" but it is unclear what that version refers to and it is...
There is this great article on using DynamoDB for storing PHP sessions: https://medium.com/five-words/simple-session-handling-for-load-balanced-php-applications-494cfb3aa6e7 I think we can simplify some steps in Bref, and we could document it. Not sure if...
Here is a link to the open issue over at awslabs/aws-sam-cli#878 The bottom line is that `sam invoke local` fails to unpackage symlinks properly, which means you can not test...