iclass / laravel-webdav
Laravel 5 WebDAV Filesystem
2.2.1
2017-05-12 02:52 UTC
Requires
- php: ~5.6|~7.0
- illuminate/filesystem: ^5.0
- league/flysystem-webdav: *
This package is not auto-updated.
Last update: 2024-11-04 16:06:55 UTC
README
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.