knplabs/gaufrette-extras

Provides extra features (prefixed fs, resolvable fs) to Gaufrette

Maintainers

Package info

github.com/KnpLabs/gaufrette-extras

pkg:composer/knplabs/gaufrette-extras

Transparency log

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

v0.2.0 2026-07-20 14:14 UTC

This package is auto-updated.

Last update: 2026-07-20 14:17:21 UTC


README

Quality Score Packagist Version Total Downloads Software License Tests

Provides extras functionality around Gaufrette like Resolvable filesystem.

Resolvable filesystem

ResolvableFilesystem is a decorator permitting to resolve objects paths into URLs.

In order to use it, you have to pass the decorated Filesystem and a Resolver:

$client     = // AwsS3 client instantiation
$decorated  = new Filesystem(new AwsS3($client, 'my_bucket', ['directory' => 'root/dir']));
$filesystem = new ResolvableFilesystem(
    $decorated,
    new AwsS3PresignedUrlResolver($client, 'my_bucket', 'root/dir', new \DateTime('+ 1 hour'))
);

Then you can call resolve($key):

$filesystem->resolve('/foo.png'); // = 'https://...

Currently these resolvers are supported:

  • AwsS3PublicUrlResolver
  • AwsS3PresignedUrlResolver
  • StaticUrlResolver