summaryrefslogtreecommitdiffstats
path: root/php-sabre-http-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-10-29 15:05:52 +0200
committerRemi Collet <fedora@famillecollet.com>2016-10-29 15:05:52 +0200
commitc534709aeb1081105537aaa2a142bfde09ebf7f1 (patch)
tree0f98eb01f5ef1fbf6a38547978e307a2de7a2fb8 /php-sabre-http-autoload.php
parent40365db6d358fba1bbed75db34db248ce29929de (diff)
php-sabre-http: switch from symfony/class-loader to fedora/autoloader
Diffstat (limited to 'php-sabre-http-autoload.php')
-rw-r--r--php-sabre-http-autoload.php22
1 files changed, 5 insertions, 17 deletions
diff --git a/php-sabre-http-autoload.php b/php-sabre-http-autoload.php
index 898fded..985f366 100644
--- a/php-sabre-http-autoload.php
+++ b/php-sabre-http-autoload.php
@@ -1,26 +1,14 @@
<?php
-/**
- * Autoloader for sabre/http and its dependencies
- */
+/* Autoloader for sabre/http and its dependencies */
-$vendorDir = '/usr/share/php';
+require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
-// Use Symfony autoloader
-if (!isset($fedoraClassLoader) || !($fedoraClassLoader instanceof \Symfony\Component\ClassLoader\ClassLoader)) {
- if (!class_exists('Symfony\\Component\\ClassLoader\\ClassLoader', false)) {
- require_once $vendorDir . '/Symfony/Component/ClassLoader/ClassLoader.php';
- }
-
- $fedoraClassLoader = new \Symfony\Component\ClassLoader\ClassLoader();
- $fedoraClassLoader->register();
-}
-
-$fedoraClassLoader->addPrefix('Sabre\\HTTP\\', dirname(dirname(__DIR__)));
+\Fedora\Autoloader\Autoload::addPsr4('Sabre\\HTTP\\', __DIR__);
// Functions
require_once __DIR__ . '/functions.php';
// dependencies
-require_once $vendorDir . '/Sabre/Event/autoload.php';
-require_once $vendorDir . '/Sabre/Uri/autoload.php';
+require_once '/usr/share/php/Sabre/Event/autoload.php';
+require_once '/usr/share/php/Sabre/Uri/autoload.php';