databases.php 333 B

1234567891011
  1. <?php
  2. //Conexión a Mysql
  3. return ['default' => [
  4. 'dsn' => 'mysql:host=tfb-database;dbname=hello_world',
  5. 'username' => 'benchmarkdbuser',
  6. 'password' => 'benchmarkdbpass',
  7. 'params' => [
  8. PDO::ATTR_PERSISTENT => true, //conexión persistente
  9. ]
  10. ],
  11. ];