Download the PHP package rafaeltovar/php-tus-aws-s3 without Composer
On this page you can find all versions of the php package rafaeltovar/php-tus-aws-s3. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download rafaeltovar/php-tus-aws-s3
More information about rafaeltovar/php-tus-aws-s3
Files in rafaeltovar/php-tus-aws-s3
Download rafaeltovar/php-tus-aws-s3
More information about rafaeltovar/php-tus-aws-s3
Files in rafaeltovar/php-tus-aws-s3
Vendor rafaeltovar
Package php-tus-aws-s3
Short Description Simple, light, minimum TUS server connected with AWS S3. Based on https://github.com/ankitpokhrel/tus-php
License MIT
Homepage https://github.com/rafaeltovar/php-tus-aws-s3
Package php-tus-aws-s3
Short Description Simple, light, minimum TUS server connected with AWS S3. Based on https://github.com/ankitpokhrel/tus-php
License MIT
Homepage https://github.com/rafaeltovar/php-tus-aws-s3
Please rate this library. Is it a good library?
Informations about the package php-tus-aws-s3
Project not maintained
This project is not being maintained. Please use the original project ankitpokhrel/tus-php to ensure regular updates. Here are some notes about using the project with AWS S3.
PHP TUS protocol server for Amazon Web Service S3
Simple, light, minimum TUS server connected with AWS S3. Based on ankitpokhrel/tus-php.
Versions
If you are using Symfony, check the table below.
Symfony Version | php-tus-aws-s3 version |
---|---|
^4.3 | ~1.0 |
^5.0 or ^6.0 | ~1.1 |
Installation
Composer
Features
- [x] Implements TUS protocol server for upload files
- [x] AWS S3 multiparts uploads
- [x] Uploads directly to AWS S3
- [x] Use Redis like data cache with Predis
- [x] Flysystem compatible
Documentation
Understanding TusPhpS3\Server class constructor
Property | Type | Details |
---|---|---|
$cache |
TusPhp\Cache\AbstractCache |
We are using TusPhpS3\Cache\PredisCache for Predis client. |
$storage |
League\Flysystem\AwsS3v3\AwsS3Adapter |
This adapter contains the AWS S3 Client. |
$request |
TusPhps3\Http\Request |
This object contain a Symfony\Component\HttpFoundation\Request . |
$excludeAttrApiPath |
array |
Exclude some parts from Api path for create a real Api Base Path for TUS Server. For example, if my Api base path is https://example.com/uploads but my upload PATCH is http://example.com/uploads/{id} We need exclude ['id'] . |
$forceLocationSSL |
boolean |
Force location header property to https . |
TUS Routes
Running TUS Server
use TusPhpS3;
use Aws\S3\S3Client;
use League\Flysystem\AwsS3v3\AwsS3Adapter;
use Symfony\Component\HttpFoundation\Request as HttpRequest;
class UploadController
{
public function upload()
{
// redis connection
$predis = new Predis\Client('tcp://10.0.0.1:6379');
// AWS S3 Client
$S3client = new S3Client([
'credentials' => [
'key' => 'your-key',
'secret' => 'your-secret',
],
'region' => 'your-region',
'version' => 'latest|version',
]);
$server = new TusPhpS3\Server(
new TusPhpS3\Cache\PredisCache($predis),
new AwsS3Adapter($S3client, 'your-bucket-name', 'optional/path/prefix'),
new TusPhpS3\Http\Request(HttpRequest::createFromGlobals()),
['id'],
true
);
return $server->serve(); // return an TusPhpS3\Http\Response
}
}
All versions of php-tus-aws-s3 with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0
psr/container Version ^1.0
league/flysystem-aws-s3-v3 Version ^1.0
ankitpokhrel/tus-php Version ^2.3
aws/aws-sdk-php Version ^3.112
guzzlehttp/guzzle Version ^6.4
symfony/http-foundation Version ^5.0 || ^6.0
psr/container Version ^1.0
league/flysystem-aws-s3-v3 Version ^1.0
ankitpokhrel/tus-php Version ^2.3
aws/aws-sdk-php Version ^3.112
guzzlehttp/guzzle Version ^6.4
symfony/http-foundation Version ^5.0 || ^6.0
The package rafaeltovar/php-tus-aws-s3 contains the following files
Loading the files please wait ....