Ayesh Karunaratne
Ayesh Karunaratne
> What is the particular use case that makes you run the latest Ubuntu release as a web server. I've been hopping between non-LTS versions to get some new features...
I upgraded to 21.10, and will be staying with 22.04 LTS. Thank you @oerdnj for providing a smooth path to 22.04.
I was reading how `league/commonmark` does the slugs, and it turns out to be stripping a lot characters as well, so I sent a PR https://github.com/thephpleague/commonmark/pull/467
I don't think drastic changes like this would be realistically merged to the 1.x branch. What I do is simply extend the `Parsedown` class, and override the necessary parts. It...
I think it's worth mentioning a few approaches we already have to look at. - NPM's discussions on the same topic: node-forward/discussions#29. NPM's packages are published from `npm publish`, so...
Ed25519 signatures are a great idea. With sodium in core/compat (thanks to you of course), Ed25519 should be easily possible. Github commit/tag signing works well with ed25519 as well, but...
Tried adding the following tests, but they don't seem to work for some reason: ``` /** * @covers \Symfony\Polyfill\Php82\Php82::ini_parse_quantity */ public function testIniParseQuantityWarningsInvalidCharactersIgnored() { $this->expectWarning(); $this->expectWarningMessageMatches('/Invalid quantity "5em", interpreting as...
Thanks a lot for the feedback. I totally forgot about the `CURLStringFile::$data` mutability, and like @nicolas-grekas said, we might (unfortunately) need to use magic methods here. I updated with `__get`,...
Thank you so much for the help @nicolas-grekas - I have made the changes. I will also push a test. It passes on PHP >= 7.4, and I'm still pulling...
Thank you @stof. Looking at [CURLFile doc](https://www.php.net/manual/en/class.curlfile.php), it says CURLFile should available in PHP >= 5.5. My direction is that the CLI server failed to start at all in older...