composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "^8.2|^8.3|^8.4|^8.5"
  16. },
  17. "require-dev": {
  18. "phpstan/phpstan": "^1.12.32|^2.1.31",
  19. "phpunit/phpunit": "^8.5.48|^9.0",
  20. "phpstan/extension-installer": "^1.4.3"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Cron\\": "src/Cron/"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "Cron\\Tests\\": "tests/Cron/"
  30. }
  31. },
  32. "replace": {
  33. "mtdowling/cron-expression": "^1.0"
  34. },
  35. "scripts": {
  36. "phpstan": "./vendor/bin/phpstan analyze",
  37. "test": "phpunit"
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "3.x-dev"
  42. }
  43. },
  44. "config": {
  45. "allow-plugins": {
  46. "ocramius/package-versions": true,
  47. "phpstan/extension-installer": true
  48. }
  49. }
  50. }