· 9 years ago · Sep 02, 2016, 10:50 PM
1<?php
2$parameters = array(
3 'db_driver' => 'pdo_mysql',
4 'db_host' => 'localhost',
5 'db_table_prefix' => null,
6 'db_port' => '3306',
7 'db_name' => 'mydatabase',
8 'db_user' => 'databasebuser',
9 'db_password' => 'thepasswordyouwant',
10 'db_server_version' => '5.5.49-0ubuntu0.14.04.1',
11 'mailer_from_name' => 'Sender',
12 'mailer_from_email' => 'hello@domain.com',
13 'mailer_transport' => 'mail',
14 'mailer_host' => null,
15 'mailer_port' => null,
16 'mailer_user' => null,
17 'mailer_password' => null,
18 'mailer_encryption' => null,
19 'mailer_auth_mode' => null,
20 'mailer_spool_type' => 'memory',
21 'mailer_spool_path' => '%kernel.root_dir%/spool',
22 'secret_key' => '01111111',
23 'site_url' => 'http://domain.com',
24
25);