composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "sabre/vobject",
  3. "description" : "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
  4. "keywords" : [ "VObject", "iCalendar", "vCard", "jCard", "jCal" ],
  5. "homepage" : "http://sabre.io/vobject/",
  6. "license" : "BSD-3-Clause",
  7. "require" : {
  8. "php" : ">=5.3.1",
  9. "ext-mbstring" : "*"
  10. },
  11. "require-dev" : {
  12. "phpunit/phpunit" : "*",
  13. "squizlabs/php_codesniffer": "*"
  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" : "Dominik Tobschall",
  24. "email" : "dominik@fruux.com",
  25. "homepage" : "http://tobschall.de/",
  26. "role" : "Developer"
  27. }
  28. ],
  29. "support" : {
  30. "forum" : "https://groups.google.com/group/sabredav-discuss",
  31. "source" : "https://github.com/fruux/sabre-vobject"
  32. },
  33. "autoload" : {
  34. "psr-4" : {
  35. "Sabre\\VObject\\" : "lib/"
  36. }
  37. },
  38. "bin" : [
  39. "bin/vobject",
  40. "bin/generate_vcards"
  41. ],
  42. "extra" : {
  43. "branch-alias" : {
  44. "dev-master" : "3.2.x-dev"
  45. }
  46. },
  47. "config" : {
  48. "bin-dir" : "bin"
  49. }
  50. }