Nicolas Grekas

Results 634 comments of Nicolas Grekas

Shouldn't we not expose internal info instead? This recommendation looks scary without really providing the solution nor the why so I don't think it's how we want to deal with...

In case this helps: ```rst Disabling Translation Domain in Validators =========================================== As of Symfony 6.3, it is possible to disable the translation domain for validators, allowing you to control how...

FTR this works with PHPUnit 7.5 (and PHP 7.4) ```sh SYMFONY_PHPUNIT_VERSION=7.5 ./vendor/bin/simple-phpunit ``` We'd need to figure out what changed in PHPUnit 8+

We've got the current list from https://github.com/unicode-org/cldr/blob/main/common/transforms/Latin-ASCII.xml Our approach to defining these lists is to find a good source that we don't have to maintain. It'd be interesting to see...

We should try to understand how debian does the conversion. Where it gets the mapping from. Might be from cldr, or something else. Once we have the source, we can...

libiconv uses https://github.com/roboticslibrary/libiconv/blob/master/lib/translit.def to do its transliterations, we might want to borrow from it. This file contains more that ASCII translit so I'm not sure exactly how we should leverage...

On Symfony, we only want single line signatures, whatever the line length. It'd save us some annoying review comments if php-cs-fixer could enforce it for us. :+1: for what it's...