summaryrefslogtreecommitdiff
path: root/dev-php/phing/files/autoload.php
blob: 437a7dc7ee1e9bd3284ccf0a12353a42df814493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
$vendor_dir = '/usr/share/php';
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
  require_once("${vendor_dir}/Fedora/Autoloader/autoload.php");
}

/*
  At least for the moment, we don't need to autoload the Phing classes
  themselves, because the "require" statements are all still there.
*/

\Fedora\Autoloader\Dependencies::required(
  array("${vendor_dir}/Symfony/Component/Yaml/autoload.php")
);