1<?php23spl_autoload_register(4function ($class) {5if (strpos($class, 'Punic\\') !== 0) {6return;7}8$file = __DIR__.DIRECTORY_SEPARATOR.'src'.str_replace('\\', DIRECTORY_SEPARATOR, substr($class, strlen('Punic'))).'.php';9if (is_file($file)) {10require_once $file;11}12}13);14