mirror of
https://github.com/mosbth/cimage.git
synced 2025-07-21 00:31:20 +02:00
15 lines
305 B
PHP
15 lines
305 B
PHP
<?php
|
|
/**
|
|
* Get all configuration details to be able to execute the test suite.
|
|
*
|
|
*/
|
|
require __DIR__ . "/../vendor/autoload.php";
|
|
|
|
if (!defined("IMAGE_PATH")) {
|
|
define("IMAGE_PATH", __DIR__ . "/../webroot/img/");
|
|
}
|
|
|
|
if (!defined("CACHE_PATH")) {
|
|
define("CACHE_PATH", __DIR__ . "/../cache/");
|
|
}
|