sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
373 B
22 lines
373 B
7 years ago
|
---
|
||
|
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);
|
||
|
~~~
|