suggest-from-twoOfEverything.json 812 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "my-vend/my-app",
  3. "license": "MIT",
  4. "require": {
  5. "my-vend/my-other-lib": "1.*",
  6. "my-vend/my-yet-another-lib": "1.*"
  7. },
  8. "require-dev": {
  9. "my-vend/my-other-lib-tests": "1.*",
  10. "my-vend/my-yet-another-lib-tests": "1.*"
  11. },
  12. "provide": {
  13. "my-vend/my-other-interface": "1.*",
  14. "my-vend/my-yet-another-interface": "1.*"
  15. },
  16. "suggest": {
  17. "my-vend/my-other-optional-extension": "1.*",
  18. "my-vend/my-yet-another-optional-extension": "1.*",
  19. "my-vend/my-optional-extension": "1.*"
  20. },
  21. "replace": {
  22. "other-vend/other-app": "1.*",
  23. "other-vend/yet-another-app": "1.*"
  24. },
  25. "conflict": {
  26. "my-vend/my-other-old-app": "1.*",
  27. "my-vend/my-yet-another-old-app": "1.*"
  28. }
  29. }