| Package Data | |
|---|---|
| Maintainer Username: | lyf362345 |
| Maintainer Contact: | lyf362345@gmail.com (fengqi) |
| Package Create Date: | 2014-12-16 |
| Package Last Update: | 2015-01-09 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:12:34 |
| Package Statistics | |
|---|---|
| Total Downloads: | 23 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 2 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
Extension for the Laravel 4 router have webdav method.
Require this package with composer:
composer require fengqi/laravel-webdav-method
After updating composer, add the ServiceProvider to the providers array in app/config/app.php
'fengqi\LaravelWebdavMethod\WebDavMethodServiceProvider'
Route::propfind('/example', 'PropController@index');
Route::propfind('/example', function()
{
// anything...
});
Route::copy();
Route::move();
Route::mkcol();
Route::proppatch();
Route::lock();
Route::unlock();