composer.json 949 B

12345678910111213141516171819202122232425262728293031323334353637
  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": "Chris Tankersley",
  10. "email": "chris@ctankersley.com",
  11. "homepage": "https://github.com/dragonmantank"
  12. }
  13. ],
  14. "require": {
  15. "php": "^7.1|^8.0"
  16. },
  17. "require-dev": {
  18. "phpstan/phpstan": "^0.11|^0.12",
  19. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Cron\\": "src/Cron/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Cron\\Tests\\": "tests/Cron/"
  29. }
  30. },
  31. "replace": {
  32. "mtdowling/cron-expression": "^1.0"
  33. },
  34. "scripts": {
  35. "phpstan": "./vendor/bin/phpstan analyse -l 0 src tests"
  36. }
  37. }