gasparyanyur / flysystem-webdav
Flysystem adapter for WebDAV
1.0.5
2016-12-14 11:28 UTC
Requires
- php: >=5.5.0
- league/flysystem: ~1.0
- sabre/dav: ~3.1
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-12-21 02:24:20 UTC
README
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