porox/dropmefiles-client

PHP client dropmefiles.com

Maintainers

Package info

github.com/porox/DropMeFilesClient

pkg:composer/porox/dropmefiles-client

Statistics

Installs: 799

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

1.2.1 2022-10-05 11:06 UTC

This package is auto-updated.

Last update: 2026-03-05 18:27:08 UTC


README

Build Status Latest Stable Version Total Downloads Downloads Month Minimum PHP Version

Sample usage

include 'vendor/autoload.php';


use \Porox\Dropmefiles\Client\CreateFileConfig;
use \Porox\Dropmefiles\Client\PeriodTypes;

$httpClient = new \GuzzleHttp\Client(['']);
$client = \Porox\Dropmefiles\Client\DropmefilesClientFactory::create($httpClient);


$config = new CreateFileConfig();
$config->addFile(new SplFileInfo(__DIR__.'/README.md'));
$config->setNeedPassword(true);
$config->setPeriod(PeriodTypes::DAYS_3);

$resp =$client->sendFiles($config);

var_dump($resp);