Dmitrii Poddubnyi

Results 28 comments of Dmitrii Poddubnyi

That was my first attempt to switch to v4.3 but not all dependencies are ready. I'll continue working on this when I finally switch so I can test everything thoroughly.

@thePanz Please, review my changes. I refactored the code according to the difference between AmqpExt [v4.2](https://github.com/symfony/symfony/tree/4.2/src/Symfony/Component/Messenger/Transport/AmqpExt ) and [v4.3](https://github.com/symfony/symfony/tree/4.3/src/Symfony/Component/Messenger/Transport/AmqpExt). Overall, looks like it is functioning, I tested it locally with...

>This is tricky as we do not have an index of messages that we can use as a db, specifically removing a message would mean to store sparse data in...

That's sad. I'd say your transport better fits for local development than the alternatives you specified since it doesn't require any dependencies. I'll stick with my fork then.

Installing `material-design-icons-iconfont` solves this issue: ``` npm install material-design-icons-iconfont --save ``` ``` //styles.scss $material-design-icons-font-path: "~material-design-icons-iconfont/dist/fonts/"; @import "~material-design-icons-iconfont/dist/material-design-icons"; ``` npm 3.10.10 node v6.10.0

The same way as S3-Uploads: it bundles Guzzle v6 installed with composer

Maybe it should be a separate build with guzzle-v6? Like manual-install-guzzle-v6.zip?

I don't have composer.json on the project level. The plugin zip files are downloaded and extracted, and that's it. So every plugin has its own `vendor` folder and autoloading. Do...

Indeed, I had to comment out all `lzo` lines the config inside container: ``` cat /etc/openvpn/openvpn.conf | grep lzo #comp-lzo no #push "comp-lzo no" ``` My server config: ``` Ubuntu...

This is my implementation of mass actions with custom form fields that depend on the action. https://gist.github.com/karser/b6e49602d12c9d3d58da This feature it is often useful, maybe it worth to include to the...