diff options
Diffstat (limited to 'phan-autoload.php')
-rw-r--r-- | phan-autoload.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/phan-autoload.php b/phan-autoload.php new file mode 100644 index 0000000..323e5b1 --- /dev/null +++ b/phan-autoload.php @@ -0,0 +1,9 @@ +<?php +/* Autoloader for etsy/phan and its dependencies */ + +require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; + +\Fedora\Autoloader\Autoload::addPsr4('Phan\\', __DIR__); +\Fedora\Autoloader\Dependencies::required(array( + '/usr/share/php/Symfony/Component/Console/autoload.php', +)); |