代码拉取完成,页面将自动刷新
<?php
declare(strict_types=1);
// 读取配置并且返回配置值
require_once __DIR__.'/tests/config.php';
return [
'paths' => [
'migrations' => 'tests/assets/database/migrations',
'seeds' => 'tests/assets/database/seeds',
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'production' => [
'adapter' => 'mysql',
'host' => '127.0.0.1',
'name' => 'production_db',
'user' => 'root',
'pass' => '',
'port' => 3306,
'charset' => 'utf8',
],
'development' => [
'adapter' => 'mysql',
'host' => $GLOBALS['LEEVEL_ENV']['DATABASE']['MYSQL']['HOST'],
'name' => $GLOBALS['LEEVEL_ENV']['DATABASE']['MYSQL']['NAME'],
'user' => $GLOBALS['LEEVEL_ENV']['DATABASE']['MYSQL']['USER'],
'pass' => $GLOBALS['LEEVEL_ENV']['DATABASE']['MYSQL']['PASSWORD'],
'port' => $GLOBALS['LEEVEL_ENV']['DATABASE']['MYSQL']['PORT'],
'charset' => 'utf8',
],
'testing' => [
'adapter' => 'mysql',
'host' => '127.0.0.1',
'name' => 'test',
'user' => 'root',
'pass' => '',
'port' => 3306,
'charset' => 'utf8',
],
],
];
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。