diff options
Diffstat (limited to 'vendor/sabre/dav/bin/sabredav.php')
-rwxr-xr-x | vendor/sabre/dav/bin/sabredav.php | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/vendor/sabre/dav/bin/sabredav.php b/vendor/sabre/dav/bin/sabredav.php new file mode 100755 index 000000000..34a674fd5 --- /dev/null +++ b/vendor/sabre/dav/bin/sabredav.php @@ -0,0 +1,53 @@ +<?php + +// SabreDAV test server. + +class CliLog { + + protected $stream; + + function __construct() { + + $this->stream = fopen('php://stdout','w'); + + } + + function log($msg) { + fwrite($this->stream, $msg . "\n"); + } + +} + +$log = new CliLog(); + +if (php_sapi_name()!=='cli-server') { + die("This script is intended to run on the built-in php webserver"); +} + +// Finding composer + + +$paths = array( + __DIR__ . '/../vendor/autoload.php', + __DIR__ . '/../../../autoload.php', +); + +foreach($paths as $path) { + if (file_exists($path)) { + include $path; + break; + } +} + +use Sabre\DAV; + +// Root +$root = new DAV\FS\Directory(getcwd()); + +// Setting up server. +$server = new DAV\Server($root); + +// Browser plugin +$server->addPlugin(new DAV\Browser\Plugin()); + +$server->exec(); |