Ryan Weaver

Results 328 comments of Ryan Weaver

Hi! Hmm, indeed! I see TomSelect supports `optgroup` - https://tom-select.js.org/examples/optgroups/. I would welcome a PR for this :). What's not clear to me is: (A) exactly how the JSON structure...

Hi guys! I think first, we should solve a simple problem: allowing request attributes (i.e. routing wildcards) to be transformed (usually, Doctrine query) into an object. @mmoreram you have some...

Fwiw, I showed a few sflive attendees the DoctrineConverter syntax and they found it simple to understand.

These empty interfaces isn’t ideal. But, the entity listeners are already kinda magic, where iirc Doctrine looks for specific methods by name. So, a marker interface like this wouldn’t bother...

> and we could solve the "which entity manager" I think we can solve this > If we had a subscriber interface for ORM only Yea, that would be best....

At first glance, I think this should totally be possible. There is a method on the Registry class called `getManagerForClass()` that could be used: https://github.com/doctrine/common/blob/a61bfddd39b887265117806e81cc6ca8da242fe1/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php#L171 Someone care to open a...

Yea, this is not a super easy process. You should (and it sounds like you already are) follow the examples from the symfony/ux repository - e.g. https://github.com/symfony/ux/tree/2.x/src/Autocomplete What I usually...

It may be related to this line: https://github.com/symfony/webpack-encore/blob/b26a169335e8daf13d9b8431e0b60aa77b81e4af/lib/config-generator.js#L545 We should possibly be avoiding silencing the stats if the output is json OR if `--profile` is passed. PR welcome :)