-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1 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
41
{
"name": "yiithings/yii2-task",
"description": "Lightweight task scheduling system extension for Yii2 framework",
"type": "yii2-extension",
"keywords": ["yii2","extension","task", "queue"],
"license": "MIT",
"authors": [
{
"name": "Panlatent",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-queue": "^2.0",
"yiisoft/yii2-redis": "^2.0",
"symfony/process": "^4.0",
"symfony/console": "^4.0"
},
"config": {
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
},
"autoload": {
"psr-4": {
"yiithings\\task\\": "src/"
}
},
"bin": [
"bin/yii2-task"
],
"require-dev": {
"yiisoft/yii2-gii": "^2.0",
"yiister/yii2-gentelella": "^1.3"
}
}