composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "netresearch/jsonmapper",
  3. "description": "Map nested JSON structures onto PHP classes",
  4. "license": "OSL-3.0",
  5. "autoload": {
  6. "psr-0": {"JsonMapper": "src/"}
  7. },
  8. "autoload-dev": {
  9. "psr-4": {
  10. "namespacetest\\": "tests/support/namespacetest",
  11. "othernamespace\\": "tests/support/othernamespace",
  12. "Enums\\": "tests/support/Enums"
  13. },
  14. "psr-0": {
  15. "JsonMapperTest_": "tests/support",
  16. "": ["tests/support/Zoo"]
  17. }
  18. },
  19. "authors": [
  20. {
  21. "name": "Christian Weiske",
  22. "email": "cweiske@cweiske.de",
  23. "homepage": "http://github.com/cweiske/jsonmapper/",
  24. "role": "Developer"
  25. }
  26. ],
  27. "support": {
  28. "email": "cweiske@cweiske.de",
  29. "issues": "https://github.com/cweiske/jsonmapper/issues"
  30. },
  31. "require":{
  32. "php": ">=7.1",
  33. "ext-spl": "*",
  34. "ext-json": "*",
  35. "ext-pcre": "*",
  36. "ext-reflection": "*"
  37. },
  38. "require-dev": {
  39. "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
  40. "squizlabs/php_codesniffer": "~3.5"
  41. }
  42. }