aaa2000

Results 17 comments of aaa2000

With postgresql and sequence strategy, this code in a custom `WebTestCase` seems to work ``` /** * @before */ protected function resetDatabaseSequences() { /** @var \Doctrine\ORM\EntityManager $em */ $em =...

Maybe, you could try ``` $encodingFrom = 'ISO-8859-1'; $encodingTo = 'UTF8'; $filepath = '/tmp/test.csv'; $reader = new CsvReader(new \SplFileObject('php://filter/read=convert.iconv.'. $encodingFrom .'%2F'. $encodingTo.'/resource='.$filepath)); ```

@garak Did you start an implementation ?

It could be resolved by #3390, the proxy configuration could be set in the `httplug` section of `app/config/config.yml`

@kstevenard #3390 is not yet merged, there is still work before. The config will be like that https://github.com/hwi/HWIOAuthBundle/blob/master/Resources/doc/internals/configuring_the_http_client.md#configure-with-httplugbundle

Maybe, you could apply the following PRs #285 #286 #294 to fix the issue

Concerning the debug mode, if there are many requests records in the cassette, we could maybe detect the recorded request which looks like the most to the request via levenshtein...

Perhaps the URI polyfill https://uri.thephpleague.com/polyfill/7.0/ could be used ? The functionality is not present in the Symfony polyfill symfony/polyfill-php85