iclass/laravel-webdav

Laravel 5 WebDAV Filesystem
5,615
Install
composer require iclass/laravel-webdav
Latest Version:2.2.1
PHP:~5.6|~7.0
License:MIT
Last Updated:May 12, 2017
Links: GitHub  ·  Packagist
Maintainer: itsnotvalid

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.

Related Packages

fengqi/laravel-webdav-method

Extension for the Laravel 4 router have webdav method

23 2
wobeto/twitter

Laravel 4 Service Provider to interact with twitter account, like return a colle...

135 1
andrewmclagan/api

A RESTful API package for the Laravel and Lumen frameworks.

18 0
maystro/filament-popup-modal

A comprehensive modal dialog system for FilamentPHP with progress bars, callback...

8 1