| 
<?php/*
 * This file is part of GImage.
 *
 * (c) Jose Quintana <https://joseluisq.net>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */
 
 /**
 * PHPUnit Autoloader for GImage Library.
 *
 * @author Jose Quintana <https://joseluisq.net>
 */
 
 namespace GImage\Test;
 
 date_default_timezone_set('America/Lima');
 
 require __DIR__ . '/../vendor/autoload.php';
 
 |