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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
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

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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rafaeltovar/php-tus-aws-s3 contains the following files

Loading the files please wait ....