Home

Awesome

:warning: This package is unmaintained and doesn't work with modern Laravel apps. Consider using a Custom Filesystem with the new WebDAV adapter.

laravel-webdav

Latest Version on Packagist run-tests Software License Total Downloads

This package provides a WebDAV driver for Laravel's Filesystem. Laravel 8.0 supported.

Support

We proudly support the community by developing Laravel packages and giving them away for free. Keeping track of issues and pull requests takes time, but we're happy to help! If this package saves you time or if you're relying on it professionally, please consider supporting the maintenance and development.

Install

Via Composer

$ composer require pbmedia/laravel-webdav

Usage

Register the service provider in your app.php config file (Laravel 5.4 and lower only):

// config/app.php

'providers' => [
    ...
    Pbmedia\FilesystemProviders\WebDAVServiceProvider::class
    ...
];

Create a webdav filesystem disk:

// config/filesystems.php

'disks' => [
	...
	'webdav' => [
	    'driver'     => 'webdav',
	    'baseUri'    => 'https://mywebdavstorage.com',
	    'userName'   => 'protonemedia',
	    'password'   => 'supersecretpassword',
	    'pathPrefix' => 'backups', // optional
	],
	...
];

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email info@protone.media instead of using the issue tracker.

Other Laravel packages

Credits

License

The MIT License (MIT). Please see License File for more information.