]> git.mxchange.org Git - friendica-addons.git/blob - dav/dav.php
v0.3 - Only refactoring, no new features; please note that this is still alpha-software
[friendica-addons.git] / dav / dav.php
1 <?php
2 /**
3  * Name: Calendar with CalDAV Support
4  * Description: A web-based calendar system with CalDAV-support. Also brings your Friendica-Contacts to your CardDAV-capable mobile phone. Requires PHP >= 5.3.
5  * Version: 0.3.0
6  * Author: Tobias Hößl <https://github.com/CatoTH/>
7  */
8
9 $_v = explode(".", phpversion());
10 if ($_v[0] > 5 || ($_v[0] == 5 && $_v[1] >= 3)) {
11         require(__DIR__ . "/friendica/main.php");
12 }