Encre Informatique
Encre Informatique
Thank you @GuilhemN and @hex333ham To be honest, I do not use this bundle, never have. So I would not go as far as "I have more interest" than you....
> amazing work dude, when I have some time I'll look over this but it could be a while so I'd use your fork if you can I will not...
> we're getting somewhere with that last one (number 3 on attempts), it's now getting past PHP 5.5 and onto PHP 7, might be that we deprecate 5 as this...
Then you might have version 3 coming then. I think it is totally justified.
@hex333ham I opened a new PR with Github Actions. All jobs succeeded as you can see there : https://github.com/encreinformatique/FOSMessageBundle/actions/runs/639031698 I suppose it does not launch as I do not have...
The `$client->getInternalResponse()->getContent()` worked for me. ```php self::$client = self::loggedIn(); self::$client->request('GET', '/export'); $content = self::$client->getInternalResponse()->getContent(); self::assertResponseIsSuccessful(); self::assertResponseHasHeader('Content-Disposition', 'attachment; filename=users.csv'); self::assertStringStartsWith('xxx;yyy', $content); ```
Using `dev-master` helped in my case. I know it is not recommended but it works in the application I am working on.
I had problems with CI on CircleCI. (https://github.com/absolute-quantum/DoctrineEncryptBundle/issues/67) Tests did failed with 5.1, kill signal from the container. I specified `@annotation_reader` on the services as you specified. It did pass...
@r3hp1c I dropped annotations for attributes a couple of months ago but I might be able to find it. (lots of commits and PR in between) As I recall, annotations...
> I also made the annotations cache in this commit: [DoctrineEncryptBundle@f83dee4](https://github.com/DoctrineEncryptBundle/DoctrineEncryptBundle/commit/f83dee413590e8cf291bb54ffe1e14fd261e5059) > The slowness was caused due to the annotations being read every single time for every entity. Caching the...