app.php 750 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. return [
  3. 'basePath' => realpath(__DIR__ . '/../'),
  4. 'defaultLayoutPath' => '@app/modules/site/layouts',
  5. 'defaultLayout' => 'main',
  6. 'language' => 'en',
  7. 'components' => [
  8. 'Piko\View' => [],
  9. 'Piko\Router' => [
  10. 'construct' => [
  11. [
  12. 'routes' => require __DIR__ . '/routes.php',
  13. ]
  14. ]
  15. ],
  16. 'PDO' => [
  17. 'construct' => [
  18. (getenv('DATABASE_DRIVER') ? getenv('DATABASE_DRIVER') : 'mysql') . ':host=tfb-database;dbname=hello_world',
  19. 'benchmarkdbuser',
  20. 'benchmarkdbpass'
  21. ]
  22. ],
  23. ],
  24. 'modules' => [
  25. 'site' => 'app\modules\site\Module'
  26. ]
  27. ];