aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/examples/minimal.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-05-29 10:58:11 +0200
committerMario Vavti <mario@mariovavti.com>2016-05-29 10:58:11 +0200
commitcac6cef4952e6535788c1c6db8ef1e58e88536a0 (patch)
tree574d653201c280cb082877f80d814b6899aacaf9 /vendor/examples/minimal.php
parentaab9766c53e42c3141d0497fce78977d262efbc1 (diff)
downloadvolse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.tar.gz
volse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.tar.bz2
volse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.zip
use composer to install sabre32
Diffstat (limited to 'vendor/examples/minimal.php')
-rw-r--r--vendor/examples/minimal.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/examples/minimal.php b/vendor/examples/minimal.php
deleted file mode 100644
index 4ac256064..000000000
--- a/vendor/examples/minimal.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-/**
- * This example shows the smallest possible sabre/dav server.
- */
-include 'vendor/autoload.php';
-
-$server = new Sabre\DAV\Server([
- new Sabre\DAV\FS\Directory(__DIR__)
-]);
-
-/**
- * Ok. Perhaps not the smallest possible. The browser plugin is 100% optional,
- * but it really helps understanding the server.
- */
-$server->addPlugin(
- new Sabre\DAV\Browser\Plugin()
-);
-
-$server->exec();