Tac Tacelosky

Results 545 comments of Tac Tacelosky

when you say they're on another server, can you use Flysystem to access them? Also, if you don't want to generate images, what's the use case for using this bundle?

Hmm, interesting question. Regardless, we need more documentation and examples. This is what I use for s3 on production and local filesystem in dev. ```yaml # config/packages/flysystem.yaml # Read the...

So here's an explanation of how to use s3 for the cached images: https://symfonycasts.com/screencast/symfony-uploads/cached-s3-filesystem BUT it's old. It uses OneUpFlysystem, and even has lines like > If you're using version...

I dug up an old project that used s3 for both the original images and for the cache. However, it was based on oneup, the cached_uploads_filesystem filesystem. Anyone know how...

Can you reopen https://github.com/liip/LiipImagineBundle/issues/1500? Or should we have the discussion in this issue? I'm trying to rewrite the documentation for flysystem-bundle, and am still stuck. Is FlysystemResolver still necessary in...

Here's my first pass at it. The sad reality is that I don't understand resolvers, and the examples were always with OneUp (which is why I submitted #1500 ) ....

Indeed! The new UX Icon component is very cool.

I _think_ that because the ux components integrate with AssetMapper, the icon files are all precached and so there's no performance impact.

The Symfony HttpClient is async by default, and implements [HttpPlug Promises](https://symfony.com/doc/current/http_client.html#httplug), perhaps it is a solution for #323 .

I'm far from an expert on this, but I _think_ HttpPlug can be dropped in favor of https://github.com/Nyholm/psr7, as HttpPlug was written before some of the PSR's. But it's like...