| Package Data | |
|---|---|
| Maintainer Username: | itsnotvalid |
| Maintainer Contact: | michael@itwakes.me (Michael Tsang) |
| Package Create Date: | 2017-04-03 |
| Package Last Update: | 2017-05-12 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:01:34 |
| Package Statistics | |
|---|---|
| Total Downloads: | 5,113 |
| Monthly Downloads: | 41 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 8 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
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.