engelsystem/includes/autoload.php

10 lines
217 B
PHP
Raw Normal View History

2017-08-28 16:21:10 +02:00
<?php
// Check for autoloader
if (!is_readable(__DIR__ . '/../vendor/autoload.php')) {
die('Please run composer.phar install');
}
// Include composer autoloader
require_once __DIR__ . '/../vendor/autoload.php';