replace-from-oneOfEverything.json 499 B

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