composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Bruno Prieto Reis",
  11. "email": "bruno.p.reis@gmail.com"
  12. },
  13. {
  14. "name": "Justin Rainbow",
  15. "email": "justin.rainbow@gmail.com"
  16. },
  17. {
  18. "name": "Igor Wiedler",
  19. "email": "igor@wiedler.ch"
  20. },
  21. {
  22. "name": "Robert Schönthal",
  23. "email": "seroscho@googlemail.com"
  24. }
  25. ],
  26. "repositories": [{
  27. "type": "package",
  28. "package": {
  29. "name": "json-schema/JSON-Schema-Test-Suite",
  30. "version": "1.1.0",
  31. "source": {
  32. "url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
  33. "type": "git",
  34. "reference": "1.1.0"
  35. }
  36. }
  37. }],
  38. "require": {
  39. "php": ">=5.3.29"
  40. },
  41. "require-dev": {
  42. "json-schema/JSON-Schema-Test-Suite": "1.1.0",
  43. "phpunit/phpunit": "~3.7",
  44. "phpdocumentor/phpdocumentor": "~2"
  45. },
  46. "autoload": {
  47. "psr-4": { "JsonSchema\\": "src/JsonSchema/" }
  48. },
  49. "autoload-dev": {
  50. "psr-4": { "JsonSchema\\Tests\\": "tests/JsonSchema/Tests/" }
  51. },
  52. "bin": ["bin/validate-json"],
  53. "extra": {
  54. "branch-alias": {
  55. "dev-master": "1.6.x-dev"
  56. }
  57. }
  58. }