mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-06 16:16:48 +01:00
* fix "integer_literal_case" * fix "phpdoc_separation" * fix "phpdoc_var_without_name" * fix "operator_linebreak" * fix "no_alias_language_construct_call" * fix "list_syntax" * fix "concat_space" * fix "array_syntax" * fix "binary_operator_spaces" * fix "binary_operator_spaces" relaxed * fix "phpdoc_types_order" * fix "phpdoc_trim" * fix "native_type_declaration_casing" * fix "method_chaining_indentation" * fix "phpdoc_no_package" * fix "elseif" * fix PHP CS Fixer config itself too * fix "native_type_declaration_casing"
34 lines
695 B
PHP
34 lines
695 B
PHP
<?php
|
|
|
|
$config = [];
|
|
|
|
// Database configuration
|
|
$config['db_dsnw'] = 'sqlite:///' . sys_get_temp_dir() . '/roundcube-test-sqlite.db?mode=0646';
|
|
|
|
// Test user credentials
|
|
$config['tests_username'] = 'test';
|
|
$config['tests_password'] = 'test';
|
|
|
|
// GreenMail
|
|
$config['smtp_host'] = 'localhost:25';
|
|
|
|
// Settings required by the tests
|
|
|
|
$config['create_default_folders'] = true;
|
|
$config['skin'] = 'elastic';
|
|
$config['support_url'] = 'http://support.url';
|
|
|
|
// Plugins with tests
|
|
|
|
$config['plugins'] = [
|
|
'archive',
|
|
'attachment_reminder',
|
|
'markasjunk',
|
|
'zipdownload',
|
|
];
|
|
|
|
$config['archive_mbox'] = 'Archive';
|
|
|
|
$config['enable_spellcheck'] = true;
|
|
$config['spellcheck_engine'] = 'pspell';
|