-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.09 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "yiimaker/yii2-helpers",
"description": "Pack of useful helpers for Yii2 Framework",
"keywords": ["yii2", "useful", "helpers", "util"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiimaker/yii2-helpers",
"issues": "https://github.com/yiimaker/yii2-helpers/issues"
},
"authors": [
{
"name": "Vladimir Kuprienko",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "~2.0"
},
"require-dev": {
"codeception/codeception": "~2.3",
"codeception/verify": "*",
"codeception/specify": "*"
},
"autoload": {
"psr-4": {
"ymaker\\helpers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ymaker\\helpers\\tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"test": [
"codecept build",
"codecept run"
]
}
}