summaryrefslogtreecommitdiffstats
path: root/php-sabre-http-autoload.php
blob: f305e1af43a42179154fb071c0feb62bf5110d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/* Autoloader for sabre/http and its dependencies */

require_once '/usr/share/php/Fedora/Autoloader/autoload.php';

\Fedora\Autoloader\Autoload::addPsr4('Sabre\\HTTP\\', __DIR__);

// Functions
require_once __DIR__ . '/functions.php';

\Fedora\Autoloader\Dependencies::required(array(
	'/usr/share/php/Sabre/Event/autoload.php',
	'/usr/share/php/Sabre/Uri/autoload.php',
));