composer.json 746 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "mtdowling/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. "name": "Michael Dowling",
  9. "email": "mtdowling@gmail.com",
  10. "homepage": "https://github.com/mtdowling"
  11. }],
  12. "require": {
  13. "php": ">=5.3.2"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "~4.0|~5.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Cron\\": "src/Cron/"
  21. }
  22. },
  23. "autoload-dev": {
  24. "psr-4": {
  25. "Tests\\": "tests/Cron/"
  26. }
  27. },
  28. "abandoned": "dragonmantank/cron-expression"
  29. }