Matthieu Napoli
Matthieu Napoli
Run the Bref Dashboard in a project: ```php vendor/bin/bref dashboard ``` If you have any questions or feedback regarding the Bref Dashboard, please write a comment here :)
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...
I am opening this issue to expose the problem and discuss solutions. When deploying a CloudFormation (`template.yaml`) stack for the first time, if it fails for any reason the stack...
### Describe your idea/feature/enhancement [Bref]() provides Lambda runtimes for PHP. The problem is dealing with layer versions (we had to build [runtimes.bref.sh](https://runtimes.bref.sh/) to track them). The idea would be to...
PHP-DI 7.0
This pull request contains a possible v7.0 version. Changes: - support PHP 8.0 and up - #769 Allow `new Container()` with definitions - #738, #741 support PHP 8 attributes for...
- https://twitter.com/bitfalls/status/707879738002563072 (ping @Swader) I need to look into other frameworks, maybe Silly can be listed as such (http://php-di.org/doc/frameworks/silly.html)
Add a test to cover https://github.com/PHP-DI/Symfony-Bridge/pull/19/files#r170584288 and to make sure it still works.
Wildcard definitions are the only thing left that PHP-DI doesn't compile. Compiling those would allow for better performances but would also solve the problem of compiling **all autowireable classes**. At...
Factory calls are still going through the PHP reflection. Maybe the invoker code could be compiled/optimized to accelerate even further factories in production.
Currently string definitions (expressions) are compiled to a call to `StringDefinition::resolveExpression(...)`: https://github.com/PHP-DI/PHP-DI/blob/40cfc13e3d53d341b8d1f26da88d3ebb5764d5e1/src/Compiler.php#L133-L137 This could be optimized by compiling/inline what `StringDefinition::resolveExpression()` do directly in the compiled code (and get rid of...