summaryrefslogtreecommitdiff
path: root/includes/autoload.php
blob: 0cd9d355d3c39a29ffada4041bd65ec23c24cf82 (plain)
1
2
3
4
5
6
7
8
9
<?php

// Check for autoloader
if (!is_readable(__DIR__ . '/../vendor/autoload.php')) {
    die('Please run composer.phar install');
}

// Include composer autoloader
$loader = require __DIR__ . '/../vendor/autoload.php';