league/flysystem-aws-s3-v2
This package is abandoned and no longer maintained.
The author suggests using the league/flysystem-aws-s3-v3 package instead.
Flysystem adapter for AWS S3 SDK v2
Maintainers
1.0.3
2015-10-15 15:55 UTC
Requires
- php: >=5.4.0
- aws/aws-sdk-php: ~2.7
- league/flysystem: ~1.0
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT e464a35e34abed572c76b76aa2f278d178e141c6
- Frank de Jonge <info.woop@frenky.net>
This package is auto-updated.
Last update: 2020-08-09 11:27:49 UTC
README
👁 Author
👁 Build Status
👁 Coverage Status
👁 Quality Score
👁 Software License
👁 Packagist Version
👁 Total Downloads
Installation
composer require league/flysystem-aws-s3-v2
Usage
use Aws\S3\S3Client; use League\Flysystem\AwsS3v2\AwsS3Adapter; use League\Flysystem\Filesystem; $client = S3Client::factory(array( 'key' => '[your key]', 'secret' => '[your secret]', 'region' => '[aws-region]', )); $adapter = new AwsS3Adapter($client, 'bucket-name', 'optional-prefix'); $filesystem = new Filesystem($adapter);
