├── README.md └── composer.json /README.md: -------------------------------------------------------------------------------- 1 | # Gaufrette Aws S3 adapter 2 | 3 | This repository is a metapackage for Gaufrette Aws S3 adapter. 4 | 5 | For issues and PRs please go on [KnpLabs/Gaufrette](https://github.com/KnpLabs/Gaufrette). 6 | 7 | ## Documentation 8 | 9 | Read the official [Gaufrette documentation](https://knplabs.github.io/Gaufrette/) and the documentation for this adapter [here](https://knplabs.github.io/Gaufrette/adapters/aws-s3.html). 10 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gaufrette/aws-s3-adapter", 3 | "description": "Aws adapter for Gaufrette", 4 | "type": "metapackage", 5 | "require": { 6 | "knplabs/gaufrette": "~0.4@dev", 7 | "aws/aws-sdk-php": "~2||~3", 8 | "ext-fileinfo": "*" 9 | }, 10 | "authors": [ 11 | { 12 | "name": "KnpLabs", 13 | "email": "hello@knplabs.com" 14 | } 15 | ] 16 | } 17 | --------------------------------------------------------------------------------