install-config-mysql.travis.php.dist 786 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. return [
  7. 'db-host' => '127.0.0.1',
  8. 'db-user' => 'root',
  9. 'db-password' => '',
  10. 'db-name' => 'magento_integration_tests',
  11. 'db-prefix' => 'trv_',
  12. 'backend-frontname' => 'backend',
  13. 'admin-user' => \Magento\TestFramework\Bootstrap::ADMIN_NAME,
  14. 'admin-password' => \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD,
  15. 'admin-email' => \Magento\TestFramework\Bootstrap::ADMIN_EMAIL,
  16. 'admin-firstname' => \Magento\TestFramework\Bootstrap::ADMIN_FIRSTNAME,
  17. 'admin-lastname' => \Magento\TestFramework\Bootstrap::ADMIN_LASTNAME,
  18. 'amqp-host' => 'localhost',
  19. 'amqp-port' => '5672',
  20. 'amqp-user' => 'guest',
  21. 'amqp-password' => 'guest',
  22. ];