xref: /plugin/davcal/vendor/sabre/xml/tests/bootstrap.php (revision e05a9e4ce8d5eea570eeaab549bb1c7f175cf322)
1<?php
2
3$try = [
4    __DIR__ . '/../vendor/autoload.php',
5    __DIR__ . '/../../../autoload.php',
6];
7
8foreach ($try as $path) {
9    if (file_exists($path)) {
10        include $path;
11        break;
12    }
13}
14
15// Some extra classes
16include __DIR__ . '/Sabre/Xml/Element/Mock.php';
17include __DIR__ . '/Sabre/Xml/Element/Eater.php';
18