composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "klarna/module-kp",
  3. "type": "magento2-module",
  4. "description": "Klarna Payments Magento 2 Extension",
  5. "version": "6.1.0",
  6. "license": "Apache-2.0",
  7. "authors": [
  8. {
  9. "name": "Joe Constant",
  10. "email": "joe.constant@klarna.com"
  11. },
  12. {
  13. "name": "Dario Kassler",
  14. "email": "dario.kassler@klarna.com"
  15. },
  16. {
  17. "name": "Fei Chen",
  18. "email": "fei.chen@klarna.com"
  19. },
  20. {
  21. "name": "Jason Grim",
  22. "email": "jason.grim@klarna.com"
  23. }
  24. ],
  25. "require": {
  26. "php": "~7.0.13|~7.1.0|~7.2.0",
  27. "klarna/module-core": "^4.0||^5.0",
  28. "klarna/module-ordermanagement": "^4.0||^5.0",
  29. "magento/framework": "^100.1||^101.0||^102.0",
  30. "magento/module-checkout": "^100.1",
  31. "magento/module-customer": "^100.1||^101.0||^102.0",
  32. "magento/module-directory": "^100.1",
  33. "magento/module-payment": "^100.1",
  34. "magento/module-quote": "^100.1||^101.0",
  35. "magento/module-sales": "^100.1||^101.0||^102.0",
  36. "magento/module-store": "^100.1||^101.0"
  37. },
  38. "replace": {
  39. "klarna/module-enterprise": "*"
  40. },
  41. "require-dev": {
  42. "friendsofphp/php-cs-fixer": "~2.10.1",
  43. "jakub-onderka/php-console-highlighter": "^0.3.2",
  44. "jakub-onderka/php-parallel-lint": "^0.9.2",
  45. "lusitanian/oauth": "~0.8.10",
  46. "mikey179/vfsStream": "^1.6",
  47. "pdepend/pdepend": "^2.5",
  48. "phploc/phploc": "^4.0",
  49. "phpmd/phpmd": "@stable",
  50. "phpro/grumphp": "^0.14",
  51. "phpunit/phpunit": "~6.2.0",
  52. "sebastian/phpcpd": "~3.0",
  53. "squizlabs/php_codesniffer": "^3.2",
  54. "theseer/phpdox": "^0.10.1",
  55. "magento/framework": "^101.0.0",
  56. "magento-ecg/coding-standard": "^3.1"
  57. },
  58. "autoload": {
  59. "psr-4": {
  60. "Klarna\\Kp\\": ""
  61. },
  62. "files": [
  63. "registration.php"
  64. ]
  65. },
  66. "autoload-dev": {
  67. "psr-4": {
  68. "Klarna\\Kp\\": "Test/Unit/"
  69. }
  70. }
  71. }