Updated composer.
[zf2.biz/application_blanche.git] / public / index.php
index 89b082b..34c609d 100644 (file)
@@ -4,6 +4,11 @@ use Zend\ServiceManager\ServiceManager,
 
 chdir(dirname(__DIR__));
 
+if (!file_exists('vendor/autoload.php')) {
+    throw new RuntimeException('vendor/autoload.php could not be found. Did you run php composer.phar install?');
+    exit;
+}
+
 // Composer autoloading
 require_once('vendor/autoload.php');