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

9
tests/test.php Normal file
View file

@ -0,0 +1,9 @@
<?php
require_once '../vendor/autoload.php';
$parser = new \SearchDAV\DAV\QueryParser();
$body = file_get_contents('./basicquery.xml');
var_dump($parser->parse($body)['{DAV:}basicsearch']);