-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1.26 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "devgroup/yii2-deferred-tasks",
"description": "Allows running tasks and actions in background(triggered by cron) in yii2 framework.",
"type": "yii2-extension",
"keywords": ["yii2","extension","dotplant","background"],
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"DevGroup\\DeferredTasks\\": "src/",
"duncan3dc\\Helpers\\": "fork-helper/"
}
},
"require": {
"yiisoft/yii2": "~2.0",
"symfony/process": "~3.2",
"devgroup/yii2-tag-dependency-helper": "~1.5",
"mtdowling/cron-expression": "~1.2.0"
},
"require-dev": {
"devgroup/dotplant-dev": "~1.0.0"
},
"autoload-dev": {
"psr-4": {
"DevGroup\\DeferredTasks\\Tests\\": "tests/"
}
},
"extra": {
"bootstrap": "DevGroup\\DeferredTasks\\Bootstrap",
"yii2-extension": {
"name": "Deferred tasks",
"name_ru": "Отложенные задачи",
"description_ru": "Запуск задач и действий в фоне для Yii2 Framework"
},
"migrationPath": [
"src/migrations"
],
"configurables": "src/configurables.php",
"translationCategory": "deferred-tasks"
}
}