Sander
Sander
@carakas I haven't been able to find a good solution for this. My idea was to hook into the Bootstrap modal shown event, use the `save` method of the editor...
@carakas have you been able to take a look at this? Do you think it should still be on the roadmap for restructure core?
The popup is the default error handling of the minlength/maxlength attribute in Chrome and Firefox (and probably most other browser based on these two). You can see the errors in...
This is only for FPM? So the retry mechanism should be implemented inside the FastCGI adapter? Using a try/catch and a do/while, which errors would we retry on? All of...
@hollodotme is there a 4.0.0-dev branch that we can send patches to? I have a basic one with typed properties lined up: https://github.com/dreadnip/fast-cgi-client/commit/64a65d3bef4531babe9bfbf4ab5a770472ccef4a If you're still working on this, I...
Cool! I've opened the first PR with the property type hints. What is your opinion on bumping the minimum PHP version to 8.1 instead of 8.0? 8.0 only has 8...
My 2c would be that 8.1 gives us things like enums (which are currently implemented in this library as abstract classes with constants: https://github.com/hollodotme/fast-cgi-client/tree/master/src/Constants) and readonly properties (there are a...
Just tried this with a very basic CLI tool of mine and it seems to work. I used Box without any configuration, then followed https://github.com/crazywhalecc/static-php-cli/blob/master/README-en.md#packing-php-code-into-a-static-binary and the binary it produced...
+1 I would love to be able to access the current Route object from the middleware stack. Right now I can't seem to find a way to get the matched...
It doesn't really make sense to me to have a setter for `contentType` either now. With `setContent` gone and the content property requiring an implementation of the interface, if someone...