composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "hyperf/crontab",
  3. "description": "A crontab component for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "crontab"
  10. ],
  11. "homepage": "https://hyperf.io",
  12. "support": {
  13. "docs": "https://hyperf.wiki",
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  16. "source": "https://github.com/hyperf/hyperf"
  17. },
  18. "require": {
  19. "php": ">=7.2",
  20. "hyperf/utils": "~2.2.0",
  21. "nesbot/carbon": "^2.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Hyperf\\Crontab\\": "src/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "HyperfTest\\Crontab\\": "tests/"
  31. }
  32. },
  33. "config": {
  34. "sort-packages": true
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.2-dev"
  39. },
  40. "hyperf": {
  41. "config": "Hyperf\\Crontab\\ConfigProvider"
  42. }
  43. }
  44. }