Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 11, 2024 via composer

league/flysystem-aws-s3-v3 3.3.0

AWS S3 filesystem adapter for Flysystem.
Package summary
Share
0
issues
2
licenses
13
MIT
2
Apache-2.0
Package created
23 Dec 2014
Version published
9 Sep 2022
Maintainers
1
Total deps
15
Direct deps
3
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
13 Packages, Including:
guzzlehttp/guzzle@7.8.1
guzzlehttp/promises@2.0.2
guzzlehttp/psr7@2.6.2
league/flysystem@3.27.0
league/flysystem-aws-s3-v3@3.3.0
league/flysystem-local@3.25.1
league/mime-type-detection@1.15.0
mtdowling/jmespath.php@2.7.0
psr/http-client@1.0.3
psr/http-factory@1.0.2
ralouphie/getallheaders@3.0.3
symfony/deprecation-contracts@v3.4.0
symfony/polyfill-mbstring@v1.29.0

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
2 Packages, Including:
aws/aws-crt-php@v1.2.4
aws/aws-sdk-php@3.304.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

3
All Dependencies CSV
β“˜ This is a list of league/flysystem-aws-s3-v3 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
aws/aws-sdk-php3.304.2-Apache-2.0
prod dev
league/flysystem3.27.0-MIT
prod
league/mime-type-detection1.15.0-MIT
prod

Visualizations

Frequently Asked Questions

What does league/flysystem-aws-s3-v3 do?

The league/flysystem-aws-s3-v3 is a valuable tool for web development applications. This package provides an AWS S3 filesystem adapter for Flysystem, allowing developers to integrate seamlessly with Amazon S3, creating a bridge between the web application and the Amazon S3 storage system. This provides an extra layer of functionality to web applications, allowing for file storage, retrieval, and even complex operations like direct streaming.

How do you use league/flysystem-aws-s3-v3?

To use the league/flysystem-aws-s3-v3, it needs to be installed and integrated into your PHP project. You can easily install the package using a composer with this command:

composer require league/flysystem-aws-s3-v3

Once the package has been installed, you can start integrating the AWS S3 filesystem adapter with your application. An example of how this might look in PHP could be:

use League\Flysystem\AwsS3v3\AwsS3Adapter;
use League\Flysystem\Filesystem;
use Aws\Credentials\CredentialProvider;
use Aws\S3\S3Client;

$provider = CredentialProvider::defaultProvider();
$s3Client = new S3Client([
    'credentials' => $provider,
    'region' => 'your-region',
    'version' => 'latest',
]);

$adapter = new AwsS3Adapter($s3Client, 'your-bucket-name');
$filesystem = new Filesystem($adapter);

This short snippet shows how to use AwsS3Adapter. First, AWS credentials are collected using the CredentialProvider::defaultProvider(). Then, an 'S3Client' is initialization with these credentials, your desired region, and the version. The AwsS3Adapter then takes this initialized S3Client and the bucket name you wish to use as parameters, which is then introduced to a new Filesystem instance.

Where are the league/flysystem-aws-s3-v3 docs?

The documentation for the league/flysystem-aws-s3-v3 package can be found following this link: Flysystem for AWS S3 documentation. Here, you can find a much more in-depth guide on how to install, use, and maximize the potential of this package.