12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "yunwuxin/think-cron",
- "description": "计划任务",
- "type": "think-extend",
- "license": "Apache-2.0",
- "authors": [
- {
- "name": "yunwuxin",
- "email": "448901948@qq.com"
- }
- ],
- "require": {
- "php": ">=5.6.0",
- "topthink/think-installer": "^2.0",
- "mtdowling/cron-expression": "^1.2",
- "jenssegers/date": "^3.2"
- },
- "require-dev": {
- "topthink/framework": "^5.1"
- },
- "autoload": {
- "psr-4": {
- "yunwuxin\\cron\\": "src/cron"
- },
- "files": [
- "src/helper.php"
- ]
- },
- "extra": {
- "think-config": {
- "cron": "src/config.php"
- }
- }
- }
|