MichaelMackus

Results 64 comments of MichaelMackus

Hmm that's unfortunate, since there are cases in my current project where I have to check existence of directories (its very hierarchical & permissions based). My composer.lock is locked against...

Thanks much for the help and responsiveness Updating composer now :)

Hmm it seems like this issue is actually still persisting. ``` php $filesystem->has('directory/') ``` Always seems to return false :( It would be nice to have functional methods on directories,...

I've worked around this using ``` php if ($filesystem->getAdapter()->has('dir/')) { $filesystem->getAdapter()->getMetadata('dir/'); } ``` Kind of messy IMO when this would be much clearer (and avoid working at a low level):...

Hmm that doesn't quite work though. If I do listContents on a valid file path (not a directory), $isDirectory would be true.

Yes, it returns an empty array `[]` for a valid file path (non-directory) at least with the aws s3 adapter. EDIT: also, looks like the [local adapter](https://github.com/thephpleague/flysystem/blob/master/src/Adapter/Local.php#L254) does as well

:+1: I've added a PR with rudimentary support for this "queue" concept. Current goal of the PR is just to fix #258, but could eventually be moved to be the...

What about containers that are run within a custom docker network? Even if I start resolvable within that network (with `--net=NETWORK`) I get errors similar to above (`error adding container...

I assumed as much. Thanks for the input. I'll probably just end up using a single proxy via nginx or similar in the meantime. At least that way I still...