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.
Download wetransfer/php-sdk
More information about wetransfer/php-sdk
Files in wetransfer/php-sdk
Package php-sdk
Short Description WeTransfer PHP SDK
License MIT
Homepage https://github.com/arkaitzgarro/wetransfer-php-sdk
Informations about the package php-sdk
WeTransfer PHP SDK
A PHP SDK for WeTransfer's Public API
Installation
System Requirements
- PHP 5.6.4 or greater
- Composer
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
guzzlehttp/guzzle Version ^6.3
ramsey/uuid Version ^3.7
squizlabs/php_codesniffer Version ^3.3