This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/league/flysystem/docs/adapter/webdav.md
T
2017-05-24 18:35:30 -05:00

22 lines
373 B
Markdown
Executable File

---
layout: default
permalink: /adapter/webdav/
title: WebDAV Adapter
---
# WebDAV Adapter
## Installation
~~~ bash
composer require league/flysystem-webdav
~~~
## Usage
~~~ php
$client = new Sabre\DAV\Client($settings);
$adapter = new League\Flysystem\WebDAV\WebDAVAdapter($client, 'optional/path/prefix');
$flysystem = new League\Flysystem\Filesystem($adapter);
~~~