From: Daniel Beyer <dabe@deb.ymc.ch>
Date: Thu, 18 Sep 2014 09:21:38 +0200
Subject: Add a vendor/autoload.php needed to run tests during package build

Forwarded: not-needed

Workaround, since composer can not be used for autoloading. Instead the
ClassLoader component, that is present in the src of Symfony, is used
for this.
---
 vendor/autoload.php | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 vendor/autoload.php

diff --git a/vendor/autoload.php b/vendor/autoload.php
new file mode 100644
index 0000000..16f3d66
--- /dev/null
+++ b/vendor/autoload.php
@@ -0,0 +1,9 @@
+<?php
+set_include_path('./src' . PATH_SEPARATOR . get_include_path());
+require_once 'Symfony/Component/ClassLoader/ClassLoader.php';
+require_once 'propel/Propel.php';
+use Symfony\Component\ClassLoader\ClassLoader;
+$loader = new ClassLoader();
+$loader->setUseIncludePath(true);
+$loader->register();
+return $loader;
