c55a791237
- Moved everything test-related into `tests` directory. Codeception tests are in `codeception`. - Removed database module since we're using fixtures and migrations. - Moved console entry points and bootstrap into `tests/codeception/bin`. - Adjusted travis build scripts. - Adjusted documentation to be consistent and reflect changes made.
28 lines
652 B
PHP
28 lines
652 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
/**
|
|
* Yii console bootstrap file.
|
|
*
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
require_once __DIR__ . '/_console_bootstrap.php';
|
|
|
|
$config = yii\helpers\ArrayHelper::merge(
|
|
require(ROOT_DIR . '/config/console.php'),
|
|
require(__DIR__ . '/../_config.php'),
|
|
[
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_unit',
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$application = new yii\console\Application($config);
|
|
$exitCode = $application->run();
|
|
exit($exitCode);
|