/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakephp
/
bake
/
tests
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests
mkdir
upload
Name
Size
Mode
Actions
Fixture/
-
0755
rm
bootstrap.php
2564
0644
edit
dl
rm
schema.php
20728
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/bootstrap.php
(2564B)
<?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 * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 0.1.0 * @license https://www.opensource.org/licenses/mit-license.php MIT License */ // phpcs:ignoreFile use Cake\Cache\Cache; use Cake\Core\Configure; use Cake\Core\Plugin; use Cake\Datasource\ConnectionManager; use Cake\Error\Debug\TextFormatter; use Cake\TestSuite\Fixture\SchemaLoader; $findRoot = function ($root) { do { $lastRoot = $root; $root = dirname($root); if (is_dir($root . '/vendor/cakephp/cakephp')) { return $root; } } while ($root !== $lastRoot); throw new Exception('Cannot find the root of the application, unable to run tests'); }; $root = $findRoot(__FILE__); unset($findRoot); chdir($root); require_once 'vendor/cakephp/cakephp/src/basics.php'; require_once 'vendor/autoload.php'; define('ROOT', $root . DS . 'tests' . DS . 'test_app' . DS); define('APP', ROOT . 'App' . DS); define('CONFIG', APP); define('TMP', sys_get_temp_dir() . DS); define('CACHE', TMP . 'cache' . DS); //used by Cake\Command\HelpCommand define('CORE_PATH', $root . DS . 'vendor' . DS . 'cakephp' . DS . 'cakephp' . DS); // Enable strict_variables Twig configuration Configure::write('Bake.twigStrictVariables', true); Configure::write('debug', true); Configure::write('App', [ 'debug' => true, 'namespace' => 'App', 'paths' => [ 'plugins' => [ROOT . 'Plugin' . DS], 'templates' => [ROOT . 'templates' . DS] ], 'encoding' => 'UTF-8' ]); Cache::setConfig([ '_cake_core_' => [ 'engine' => 'File', 'prefix' => 'cake_core_', 'serialize' => true, 'path' => CACHE, ], ]); if (!getenv('DB_URL')) { putenv('DB_URL=sqlite:///:memory:'); } ConnectionManager::setConfig('test', ['url' => getenv('DB_URL')]); // Create test database schema if (env('FIXTURE_SCHEMA_METADATA')) { $loader = new SchemaLoader(); $loader->loadInternalFile(env('FIXTURE_SCHEMA_METADATA')); } Configure::write('Debugger.exportFormatter', TextFormatter::class); Plugin::getCollection()->add(new \Bake\Plugin());
Save
cmd:
run