install-config-mysql.php.2.3.dist 787 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. return [
  7. 'db-host' => 'db',
  8. 'db-user' => 'magento',
  9. 'db-password' => 'magento',
  10. 'db-name' => 'magento_integration_tests',
  11. 'db-prefix' => '',
  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' => 'rabbitmq',
  19. 'amqp-port' => '5672',
  20. 'amqp-user' => 'magento',
  21. 'amqp-password' => 'magento',
  22. ];