composer.json 565 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "magento/updater",
  3. "description": "Test composer.json",
  4. "type": "project",
  5. "version": "0.74.0-beta2",
  6. "license": [
  7. "OSL-3.0",
  8. "AFL-3.0"
  9. ],
  10. "require": {
  11. "php": "~5.5.0|~5.6.0|~7.0.0|~7.1.0",
  12. "magento/product-community-edition": "0.74.0-beta12"
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "4.1.0"
  16. },
  17. "replace": {
  18. "magento/module-admin-notification": "self.version"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Magento\\": "app/code/Magento/"
  23. }
  24. }
  25. }