initial working version

supports grammar discovery, schema discovery and search
This commit is contained in:
Robin Appelman 2017-02-01 14:14:37 +01:00
commit 88db2ae6c1
18 changed files with 1040 additions and 0 deletions

8
tests/testserver.php Normal file
View file

@ -0,0 +1,8 @@
<?php
require_once __DIR__ . '/../vendor/autoload.php';
$server = new \Sabre\DAV\Server();
$server->addPlugin(new \SearchDAV\DAV\SearchPlugin(new \SearchDAV\Test\DummyBackend()));
$server->exec();