pixxet/laravel-webdav is a Laravel package for laravel 5 webdav filesystem.
It currently has 0 GitHub stars and 915 downloads on Packagist (latest version 2.2.2).
Install it with composer require pixxet/laravel-webdav.
Discover more Laravel packages by pixxet
or browse all Laravel packages to compare alternatives.
Last updated
Via Composer
$ composer require iclass/laravel-webdav
Register the service provider in your app.php config file:
// config/app.php
'providers' => [
...
Iclass\Webdav\WebdavServiceProvider::class
...
];
Create a webdav filesystem disk:
// config/filesystems.php
'disks' => [
...
'webdav' => [
'driver' => 'webdav',
'baseUri' => 'https://mywebdavstorage.com',
'userName' => 'pascalbaljetmedia',
'password' => 'supersecretpassword,
'curl_options' => [
]
],
...
];
Please see CHANGELOG for more information what has changed recently.
The MIT License (MIT). Please see License File for more information.