S3 Stream Wrapper alternatives and similar libraries
Based on the "Third Party APIs" category.
Alternatively, view S3 Stream Wrapper alternatives based on common mentions on social networks and blogs.
-
Amazon Web Service SDK
Official repository of the AWS SDK for PHP (@awsforphp) -
PHP Github API
A simple PHP GitHub API client, Object Oriented, tested and documented. -
Twilio
A PHP library for communicating with the Twilio REST API and generating TwiML. -
Campaign Monitor
A PHP library for the Campaign Monitor API -
Digital Ocean
PHP 5.3+ library which helps you to interact with the DigitalOcean API -
PhpInsights
A versatile PHP Library for Google PageSpeed Insights
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of S3 Stream Wrapper or a related project?
README
S3StreamWrapper
A simple stream wrapper for Amazon S3.
Example
<?php
use S3StreamWrapper\S3StreamWrapper;
S3StreamWrapper::register();
$options = array(
'credentials' => [
'key' => "YOUR AWS KEY HERE",
'secret' => "YOUR AWS SECRET HERE"
],
'region' => 'us-east-1',
'version' => '2006-03-01'
);
stream_context_set_default(array('s3' => $options));
echo file_get_contents("s3://mybucket/file1");
echo file_put_contents("s3://mybucket/file2", "Foobar!");
print_r(scandir("s3://mybucket/"));
License
MIT, See LICENSE
*Note that all licence references and agreements mentioned in the S3 Stream Wrapper README section above
are relevant to that project's source code only.