composer.json 834 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "justinrainbow/json-schema",
  3. "description": "A library to validate a json schema.",
  4. "keywords": ["json", "schema"],
  5. "homepage": "https://github.com/justinrainbow/json-schema",
  6. "type": "library",
  7. "license": "NewBSD",
  8. "version": "1.1.0",
  9. "authors": [
  10. {
  11. "name": "Bruno Prieto Reis",
  12. "email": "bruno.p.reis@gmail.com"
  13. },
  14. {
  15. "name": "Justin Rainbow",
  16. "email": "justin.rainbow@gmail.com"
  17. },
  18. {
  19. "name": "Igor Wiedler",
  20. "email": "igor@wiedler.ch"
  21. },
  22. {
  23. "name": "Robert Schönthal",
  24. "email": "seroscho@googlemail.com"
  25. }
  26. ],
  27. "require": {
  28. "php": ">=5.3.0"
  29. },
  30. "autoload": {
  31. "psr-0": { "JsonSchema": "src/" }
  32. }
  33. }