|
|
@@ -0,0 +1,68 @@
|
|
|
+<?php
|
|
|
+declare(strict_types=1);
|
|
|
+
|
|
|
+/**
|
|
|
+ * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
|
|
+ * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
|
+ *
|
|
|
+ * Licensed under The MIT License
|
|
|
+ * Redistributions of files must retain the above copyright notice.
|
|
|
+ *
|
|
|
+ * @copyright Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
|
+ * @link https://cakephp.org CakePHP(tm) Project
|
|
|
+ * @license https://opensource.org/licenses/mit-license.php MIT License
|
|
|
+ */
|
|
|
+
|
|
|
+use Cake\Core\Configure;
|
|
|
+
|
|
|
+if (is_file('vendor/autoload.php')) {
|
|
|
+ require_once 'vendor/autoload.php';
|
|
|
+} else {
|
|
|
+ require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
+}
|
|
|
+
|
|
|
+if (!defined('DS')) {
|
|
|
+ define('DS', DIRECTORY_SEPARATOR);
|
|
|
+}
|
|
|
+define('ROOT', dirname(__DIR__));
|
|
|
+define('APP_DIR', 'TestApp');
|
|
|
+
|
|
|
+define('TMP', sys_get_temp_dir() . DS);
|
|
|
+define('LOGS', TMP . 'logs' . DS);
|
|
|
+define('CACHE', TMP . 'cache' . DS);
|
|
|
+define('SESSIONS', TMP . 'sessions' . DS);
|
|
|
+
|
|
|
+define('CAKE_CORE_INCLUDE_PATH', ROOT);
|
|
|
+define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
|
|
|
+define('CAKE', CORE_PATH . 'src' . DS);
|
|
|
+define('CORE_TESTS', CORE_PATH . 'tests' . DS);
|
|
|
+define('CORE_TEST_CASES', CORE_TESTS . 'TestCase');
|
|
|
+define('TEST_APP', CORE_TESTS . 'test_app' . DS);
|
|
|
+
|
|
|
+// Point app constants to the test app.
|
|
|
+define('APP', TEST_APP . 'TestApp' . DS);
|
|
|
+define('WWW_ROOT', TEST_APP . 'webroot' . DS);
|
|
|
+define('CONFIG', TEST_APP . 'config' . DS);
|
|
|
+
|
|
|
+// phpcs:disable
|
|
|
+@mkdir(LOGS);
|
|
|
+@mkdir(SESSIONS);
|
|
|
+@mkdir(CACHE);
|
|
|
+@mkdir(CACHE . 'views');
|
|
|
+@mkdir(CACHE . 'models');
|
|
|
+// phpcs:enable
|
|
|
+
|
|
|
+require_once ROOT . DS . 'vendor/cakephp/core/functions.php';
|
|
|
+
|
|
|
+date_default_timezone_set('UTC');
|
|
|
+mb_internal_encoding('UTF-8');
|
|
|
+
|
|
|
+Configure::write('debug', true);
|
|
|
+Configure::write('App', [
|
|
|
+ 'namespace' => 'App',
|
|
|
+ 'encoding' => 'UTF-8',
|
|
|
+]);
|
|
|
+
|
|
|
+ini_set('intl.default_locale', 'en_US');
|
|
|
+ini_set('session.gc_divisor', '1');
|
|
|
+ini_set('assert.exception', '1');
|