composer.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "magento/project-community-edition",
  3. "description": "eCommerce Platform for Growth (Community Edition)",
  4. "type": "project",
  5. "license": [
  6. "OSL-3.0",
  7. "AFL-3.0"
  8. ],
  9. "config": {
  10. "preferred-install": "dist",
  11. "sort-packages": true
  12. },
  13. "require": {
  14. "magento/product-community-edition": "2.3.1",
  15. "magento/data-migration-tool": "2.3.1"
  16. },
  17. "require-dev": {
  18. "friendsofphp/php-cs-fixer": "~2.13.0",
  19. "lusitanian/oauth": "~0.8.10",
  20. "magento/magento2-functional-testing-framework": "~2.3.13",
  21. "pdepend/pdepend": "2.5.2",
  22. "phpmd/phpmd": "@stable",
  23. "phpunit/phpunit": "~6.5.0",
  24. "sebastian/phpcpd": "~3.0.0",
  25. "squizlabs/php_codesniffer": "3.3.1",
  26. "allure-framework/allure-phpunit": "~1.2.0"
  27. },
  28. "conflict": {
  29. "gene/bluefoot": "*"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Magento\\Framework\\": "lib/internal/Magento/Framework/",
  34. "Magento\\Setup\\": "setup/src/Magento/Setup/",
  35. "Magento\\": "app/code/Magento/",
  36. "Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
  37. },
  38. "psr-0": {
  39. "": [
  40. "app/code/",
  41. "generated/code/"
  42. ]
  43. },
  44. "files": [
  45. "app/etc/NonComposerComponentRegistration.php"
  46. ],
  47. "exclude-from-classmap": [
  48. "**/dev/**",
  49. "**/update/**",
  50. "**/Test/**"
  51. ]
  52. },
  53. "autoload-dev": {
  54. "psr-4": {
  55. "Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
  56. "Magento\\Tools\\": "dev/tools/Magento/Tools/",
  57. "Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
  58. "Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
  59. "Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/"
  60. }
  61. },
  62. "version": "2.3.1",
  63. "minimum-stability": "stable",
  64. "repositories": [
  65. {
  66. "type": "composer",
  67. "url": "https://repo.magento.com/"
  68. }
  69. ],
  70. "extra": {
  71. "magento-force": "override"
  72. }
  73. }