install-config-mysql.php.dist 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Magento console installer options for Web API functional tests. Are used in functional tests bootstrap.
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. return [
  9. 'language' => 'en_US',
  10. 'timezone' => 'America/Los_Angeles',
  11. 'currency' => 'USD',
  12. 'db-host' => 'localhost',
  13. 'db-name' => 'magento_functional_tests',
  14. 'db-user' => 'root',
  15. 'db-password' => '',
  16. 'backend-frontname' => 'backend',
  17. 'base-url' => 'http://localhost/',
  18. 'use-secure' => '0',
  19. 'use-rewrites' => '0',
  20. 'admin-lastname' => 'Admin',
  21. 'admin-firstname' => 'Admin',
  22. 'admin-email' => 'admin@example.com',
  23. 'admin-user' => 'admin',
  24. 'admin-password' => '123123q',
  25. 'admin-use-security-key' => '0',
  26. /* PayPal has limitation for order number - 20 characters. 10 digits prefix + 8 digits number is good enough */
  27. 'sales-order-increment-prefix' => time(),
  28. 'session-save' => 'db',
  29. 'cleanup-database' => true,
  30. ];