composer.json 912 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "jrtk/jobby",
  3. "homepage": "https://github.com/jobbyphp/jobby",
  4. "license": "MIT",
  5. "description": "Manage all your cron jobs without modifying crontab. Handles locking, logging, error emails, and more.",
  6. "authors": [
  7. {
  8. "name": "Gerard Sychay",
  9. "email": "hellogerard@gmail.com",
  10. "homepage": "https://github.com/hellogerard"
  11. },
  12. {
  13. "name": "Michael Contento",
  14. "homepage": "https://github.com/michaelcontento"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.4",
  19. "mtdowling/cron-expression": "^1.0",
  20. "swiftmailer/swiftmailer": "^5.4|^6.0",
  21. "jeremeamia/superclosure": "^2.2",
  22. "symfony/process": "^2.7|^3.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^4.6",
  26. "symfony/filesystem": "^2.7|^3.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Jobby\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Jobby\\Tests\\": "tests"
  36. }
  37. }
  38. }