diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-06-29 15:15:08 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-06-29 15:15:08 +0200 |
commit | fba02f343af7f1d8b87b8df0e3152260942c85f8 (patch) | |
tree | 06d420d4e2efbd380cde228d81063cf9b8d348ca /php-phpspec-prophecy-autoload.php | |
parent | dc8ea32fe76b2dabc3c1195f4f0e154f4c5a4a4b (diff) |
php-phpspec-prophecy: autoloader
Diffstat (limited to 'php-phpspec-prophecy-autoload.php')
-rw-r--r-- | php-phpspec-prophecy-autoload.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/php-phpspec-prophecy-autoload.php b/php-phpspec-prophecy-autoload.php new file mode 100644 index 0000000..1e8dfe4 --- /dev/null +++ b/php-phpspec-prophecy-autoload.php @@ -0,0 +1,20 @@ +<?php +/* Autoloader for phpspec/prophecy and its dependencies */ + +$vendorDir = '/usr/share/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('Prophecy\\', dirname(__DIR__)); + +// Depdencies (Rely on include_path as in PHPUnit dependencies + circular dependencies) +require_once 'Doctrine/Instantiator/autoload.php'; +require_once 'SebastianBergmann/Comparator/autoload.php'; +require_once 'phpDocumentor/Reflection/DocBlock/autoload.php'; |