composer.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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|^8.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  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. "extra": {
  36. "branch-alias": {
  37. "dev-master": "2.3-dev"
  38. }
  39. }
  40. }