composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "sabre/xml",
  3. "description" : "sabre/xml is an XML library that you may not hate.",
  4. "keywords" : [ "XML", "XMLReader", "XMLWriter", "DOM" ],
  5. "homepage" : "https://sabre.io/xml/",
  6. "license" : "BSD-3-Clause",
  7. "require" : {
  8. "php" : ">=5.4.1",
  9. "ext-xmlwriter" : "*",
  10. "ext-xmlreader" : "*",
  11. "ext-dom" : "*",
  12. "lib-libxml" : ">=2.6.20",
  13. "sabre/uri" : "~1.0"
  14. },
  15. "authors" : [
  16. {
  17. "name" : "Evert Pot",
  18. "email" : "me@evertpot.com",
  19. "homepage" : "http://evertpot.com/",
  20. "role" : "Developer"
  21. },
  22. {
  23. "name": "Markus Staab",
  24. "email": "markus.staab@redaxo.de",
  25. "role" : "Developer"
  26. }
  27. ],
  28. "support" : {
  29. "forum" : "https://groups.google.com/group/sabredav-discuss",
  30. "source" : "https://github.com/fruux/sabre-xml"
  31. },
  32. "autoload" : {
  33. "psr-4" : {
  34. "Sabre\\Xml\\" : "lib/"
  35. },
  36. "files": [
  37. "lib/Deserializer/functions.php",
  38. "lib/Serializer/functions.php"
  39. ]
  40. },
  41. "bin" : [
  42. ],
  43. "require-dev": {
  44. "sabre/cs": "~0.0.2",
  45. "phpunit/phpunit" : "*"
  46. },
  47. "config" : {
  48. "bin-dir" : "bin/"
  49. }
  50. }