xref: /plugin/davcal/vendor/sabre/xml/tests/bootstrap.php (revision 4858fc45e42a316f3e67de7b942c5b2cadbd426f)
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