composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "kigkonsult/icalcreator",
  3. "type": "library",
  4. "description": "iCalcreator is the PHP implementation of rfc2445/rfc5545, management of iCal formatted files",
  5. "keywords": [ "rfc2445",
  6. "rfc5545",
  7. "rfc6321",
  8. "management",
  9. "calendar",
  10. "vCalendar",
  11. "vevent",
  12. "vtodo",
  13. "vjournal",
  14. "vfreebusy",
  15. "valarm",
  16. "vtimezone",
  17. "standard",
  18. "daylight",
  19. "file" ],
  20. "time" : "2017-09-04",
  21. "license": "(AGPLv3 or proprietary)",
  22. "description": "iCalcreator is the PHP implementation of rfc2445/rfc5545, management of iCal formatted files",
  23. "keywords": [ "rfc2445", "rfc5545", "calendar", "management", "file", "format" ],
  24. "homepage": "http://kigkonsult.se",
  25. "support": {
  26. "issues": "http://kigkonsult.se/contact/index.php"
  27. },
  28. "authors": [
  29. {
  30. "name": "Kjell-Inge Gustafsson",
  31. "email": "ical@kigkonsult.se"
  32. }
  33. ],
  34. "autoload": {
  35. "files": ["autoload.php"],
  36. "psr-4": { "kigkonsult\\iCalcreator\\": ["src/", "src/util/", "src/traits/"] }
  37. },
  38. "require": {
  39. "php": ">=5.4"
  40. }
  41. }