<?php 
 
declare(strict_types=1); 
 
/** 
 * This file is part of Esi\Mimey. 
 * 
 * (c) Eric Sizemore <[email protected]> 
 * (c) Ricardo Boss <[email protected]> 
 * (c) Ralph Khattar <[email protected]> 
 * 
 * This source file is subject to the MIT license. For the full copyright, 
 * license information, and credits/acknowledgements, please view the LICENSE 
 * and README files that were distributed with this source code. 
 */ 
error_reporting(\E_ALL); 
 
require_once dirname(__DIR__) . '/vendor/autoload.php'; 
 
// Generate the mapping file. 
require dirname(__DIR__) . '/bin/generate.php'; 
 
 |