composer.json 2.1 KB

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