composer.json 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "simshaun/recurr",
  3. "description": "PHP library for working with recurrence rules",
  4. "keywords": ["rrule", "recurrence", "recurring", "events", "dates"],
  5. "homepage": "https://github.com/simshaun/recurr",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Shaun Simmons",
  11. "email": "shaun@shaun.pub",
  12. "homepage": "https://shaun.pub"
  13. }
  14. ],
  15. "require": {
  16. "php": "^7.2||^8.0",
  17. "doctrine/collections": "~1.6"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^8.5.16",
  21. "symfony/yaml": "^5.3"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Recurr\\": "src/Recurr/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Recurr\\Test\\": "tests/Recurr/Test"
  31. }
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "0.x-dev"
  36. }
  37. },
  38. "scripts": {
  39. "test": "./vendor/bin/phpunit --color=always"
  40. }
  41. }