config.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <payment>
  11. <fake>
  12. <model>Magento\TestModuleFakePaymentMethod\Gateway\Facade</model>
  13. <title>Fake Payment Method</title>
  14. <payment_action>authorize</payment_action>
  15. <active>1</active>
  16. <is_gateway>1</is_gateway>
  17. <can_use_checkout>1</can_use_checkout>
  18. <can_authorize>1</can_authorize>
  19. <can_capture>1</can_capture>
  20. <can_refund>1</can_refund>
  21. <can_void>1</can_void>
  22. <can_cancel>1</can_cancel>
  23. <cctypes>AE,VI,MC,DI,JCB,CUP,DN,MI</cctypes>
  24. <useccv>1</useccv>
  25. <order_status>processing</order_status>
  26. </fake>
  27. <fake_vault>
  28. <model>Magento\TestModuleFakePaymentMethod\Gateway\VaultFacade</model>
  29. <title>Fake Payment Method Vault</title>
  30. <active>1</active>
  31. <instant_purchase>
  32. <supported>1</supported>
  33. </instant_purchase>
  34. </fake_vault>
  35. </payment>
  36. </default>
  37. </config>