gasparyanyur/flysystem-webdav

Flysystem adapter for WebDAV

1.0.5 2016-12-14 11:28 UTC

This package is not auto-updated.

Last update: 2024-04-26 23:02:41 UTC


README

Author Build Status Coverage Status Quality Score Software License

This is a Flysystem adapter for the WebDAV.

Installation

composer require league/flysystem-webdav

Bootstrap

<?php
use Sabre\DAV\Client;
use League\Flysystem\Filesystem;
use League\Flysystem\WebDAV\WebDAVAdapter;

$client = new Client($settings);
$adapter = new WebDAVAdapter($client);
$flysystem = new Filesystem($adapter);

I have added stream support logic, that the request should get and send large files via stream