Download the PHP package wetransfer/php-sdk without Composer

On this page you can find all versions of the php package wetransfer/php-sdk. 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-sdk

WeTransfer PHP SDK

Build Status Latest Stable Version License Coverage Status

A PHP SDK for WeTransfer's Public API

Installation

System Requirements

The WeTransfer PHP SDK can be installed through Composer. If Composer is available globally, run the following command in your project directory:

Or if Composer has been installed locally in your project, run the following command:

Usage

In order to be able to use the SDK and access our public APIs, you must provide an API key, which is available in our Developers Portal.

You can find a complete working example here.

If you are not using an automatic class loader within your project, you will need to load the SDK manually at the beginning of each php script, like that:

Firstly, the client needs to be configured with your API Key obtained from the WeTransfer's Developer. We recommend to set your API Key as an environment variable, but this will depend on how your application has been configured.

Transfer

Transfers can be created with or without items. Once the transfer has been created, items can be added at any time. Using plain PHP, you will read this variables from $_POST, most probably:

Or access the request object if you are using a framework like Symfony:

Add items to a transfer

Once a transfer has been created you can then add items (files or links) to it. If you are adding files to the transfer, the files are not uploaded at this point, but in the next step.

The $transfer object will be updated with each item that was added to the transfer. For files, this objects will be used to upload the correspondent file to the transfer, as explained in the next section.

Upload a file

Once the file has been added to the transfer, next step is to upload the file or files. You must provide the content of the file to upload as a reference (use fopen function for it), we will NOT read the file for you. The content of the file will be splited and uploaded in chunks of 5MB to our S3 bucket.

Request an upload URL

The previous steps work well for an environment where accessing the files directly is possible, like a CLI tool. In a web environment, we don't want to upload the files to the server, and from there, upload them to S3, but upload them directly from the client. WeTransfer\File::createUploadUrl method will create the necessary upload URL for a given part.

Development

Get Composer. Follow the instructions defined on the official Composer page, or if you are using homebrew, just run:

Install project dependencies:

Run the test suite:

Please adhere to PSR-2 coding standard. Run the following commands before pushing your code:


All versions of php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version ^5.6|^7.0
guzzlehttp/guzzle Version ^6.3
ramsey/uuid Version ^3.7
squizlabs/php_codesniffer Version ^3.3
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 wetransfer/php-sdk contains the following files

Loading the files please wait ....