fengqi / laravel-webdav-method by lyf362345

Extension for the Laravel 4 router have webdav method
22
2
2
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: 2024-05-11 03:18:14
Package Statistics
Total Downloads: 22
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

laravel-webdav-method

Extension for the Laravel 4 router have webdav method.

Installation

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'

Useage example

Route::propfind('/example', 'PropController@index');
Route::propfind('/example', function()
{
    // anything...
});

Route::copy();
Route::move();
Route::mkcol();
Route::proppatch();
Route::lock();
Route::unlock();