composer.json 735 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "yunwuxin/think-cron",
  3. "description": "计划任务",
  4. "type": "think-extend",
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "yunwuxin",
  9. "email": "448901948@qq.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.6.0",
  14. "topthink/think-installer": "^2.0",
  15. "mtdowling/cron-expression": "^1.2",
  16. "jenssegers/date": "^3.2"
  17. },
  18. "require-dev": {
  19. "topthink/framework": "^5.1"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "yunwuxin\\cron\\": "src/cron"
  24. },
  25. "files": [
  26. "src/helper.php"
  27. ]
  28. },
  29. "extra": {
  30. "think-config": {
  31. "cron": "src/config.php"
  32. }
  33. }
  34. }