This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-21 13:37:21 +01:00

6 lines
140 B
PHP

<?php
require_once 'vendor/autoload.php';
spl_autoload_register(function ($class) {
require_once strtr($class, '\\_', '//').'.php';
});