-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
executable file
·36 lines (36 loc) · 1.04 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
{
"name": "vova07/yii2-console-runner-extension",
"description": "An extension for running console commands on background in Yii framework.",
"keywords": ["yii2", "yii 2", "console", "runner", "commands", "background"],
"homepage": "https://github.com/vova07/yii2-console-runner-extension",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Crudu Vasile",
"email": "bazillio07@yandex.ru"
}
],
"support": {
"issues": "https://github.com/vova07/yii2-console-runner-extension/issues?state=open",
"source": "https://github.com/vova07/yii2-console-runner-extension"
},
"minimum-stability": "stable",
"require": {
"yiisoft/yii2": "*"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"vova07\\console\\": ["src", "tests"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}