composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "peppeocchi/php-cron-scheduler",
  3. "description": "PHP Cron Job Scheduler",
  4. "license": "MIT",
  5. "keywords": ["cron job", "scheduler"],
  6. "authors": [
  7. {
  8. "name": "Giuseppe Occhipinti",
  9. "email": "peppeocchi@gmail.com"
  10. },
  11. {
  12. "name": "Carsten Windler",
  13. "email": "carsten@carstenwindler.de",
  14. "homepage": "http://carstenwindler.de",
  15. "role": "Contributor"
  16. }
  17. ],
  18. "minimum-stability": "dev",
  19. "require": {
  20. "php": "^7.3 || ^8.0",
  21. "dragonmantank/cron-expression": "^3.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "~9.5",
  25. "php-coveralls/php-coveralls": "^2.4",
  26. "swiftmailer/swiftmailer": "~5.4 || ^6.0"
  27. },
  28. "suggest": {
  29. "swiftmailer/swiftmailer": "Required to send the output of a job to email address/es (~5.4 || ^6.0)."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "GO\\": "src/GO/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "Tests\\": "tests/GO/"
  39. }
  40. }
  41. }