Skip to content

iclasshk/laravel-webdav

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel-webdav

Latest Version on Packagist Software License Total Downloads

Install

Via Composer

$ composer require iclass/laravel-webdav

Usage

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' => [
	    ]
	],
	...
];

Change log

Please see CHANGELOG for more information what has changed recently.

Credits

License

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

About

WebDAV Serivce Provider for Laravel 5.0 and higher

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%