-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (42 loc) · 1.12 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
42
43
{
"name": "pastuhov/yii2-query-tag",
"description": "Query tag extension for Yii 2",
"keywords": ["yii2", "testing", "debug", "debugger"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/pastuhov/yii2-query-tag/issues",
"source": "https://github.com/pastuhov/yii2-query-tag"
},
"authors": [
{
"name": "Pastukhov Kirill",
"email": "kirill@pastukhov.su",
"homepage": "https://github.com/pastuhov/",
"role": "Developer"
}
],
"require": {
"yiisoft/yii2": "~2.0.4"
},
"require-dev": {
"yiisoft/yii2-codeception": "2.0.*",
"codeception/codeception": "2.1.8",
"codeception/specify": "0.4.*",
"codeception/verify": "0.2.*",
"pastuhov/yii2-logstock": "~1.0.0"
},
"autoload": {
"psr-4": {
"pastuhov\\querytag\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"pastuhov\\querytag\\tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/codecept run"
}
}