composer.json 891 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "dragonmantank/cron-expression",
  3. "type": "library",
  4. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  5. "keywords": ["cron", "schedule"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Michael Dowling",
  10. "email": "mtdowling@gmail.com",
  11. "homepage": "https://github.com/mtdowling"
  12. },
  13. {
  14. "name": "Chris Tankersley",
  15. "email": "chris@ctankersley.com",
  16. "homepage": "https://github.com/dragonmantank"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=7.0.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~6.4"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Cron\\": "src/Cron/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Tests\\": "tests/Cron/"
  33. }
  34. }
  35. }