Drupal investigation

yii 729B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env php
  2. <?php
  3. /**
  4. * Yii console bootstrap file.
  5. *
  6. * @link http://www.yiiframework.com/
  7. * @copyright Copyright (c) 2008 Yii Software LLC
  8. * @license http://www.yiiframework.com/license/
  9. */
  10. defined('YII_DEBUG') or define('YII_DEBUG', true);
  11. defined('YII_ENV') or define('YII_ENV', 'test');
  12. require(__DIR__ . '/../../vendor/autoload.php');
  13. require(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
  14. $config = yii\helpers\ArrayHelper::merge(
  15. require(__DIR__ . '/../../config/console.php'),
  16. [
  17. 'components' => [
  18. 'db' => require(__DIR__ . '/../../config/test_db.php')
  19. ]
  20. ]
  21. );
  22. $application = new yii\console\Application($config);
  23. $exitCode = $application->run();
  24. exit($exitCode);