You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

3 years ago
  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.2|^8.0",
  16. "webmozart/assert": "^1.7.0"
  17. },
  18. "require-dev": {
  19. "phpstan/phpstan": "^0.12",
  20. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  21. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  22. "phpstan/extension-installer": "^1.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Cron\\": "src/Cron/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Cron\\Tests\\": "tests/Cron/"
  32. }
  33. },
  34. "replace": {
  35. "mtdowling/cron-expression": "^1.0"
  36. },
  37. "scripts": {
  38. "phpstan": "./vendor/bin/phpstan analyse -l max src",
  39. "test": "phpunit"
  40. }
  41. }