config.php 944 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. return [
  7. 'scopes' => [
  8. 'websites' => []
  9. ],
  10. /**
  11. * Shared configuration was written to config.php and system-specific configuration to env.php.
  12. * Shared configuration file (config.php) doesn't contain sensitive data for security reasons.
  13. * Sensitive data can be stored in the following environment variables:
  14. * CONFIG__DEFAULT__SOME__CONFIG__PATH_ONE for some/config/path_one
  15. * CONFIG__DEFAULT__SOME__CONFIG__PATH_TWO for some/config/path_two
  16. * CONFIG__DEFAULT__SOME__CONFIG__PATH_THREE for some/config/path_three
  17. */
  18. 'system' => [],
  19. 'integrationTestImporter' => [
  20. 'someGroup' => [
  21. 'someField' => 'testValue',
  22. ]
  23. ],
  24. 'integrationTestSecondImporter' => [
  25. 'someGroup' => [
  26. 'someField' => 'testSecondValue',
  27. ]
  28. ],
  29. ];