-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.16 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
{
"name" : "tapakan/yii2-settings",
"description" : "Allowed you to manage settings from interface through module",
"version" : "0.1.0",
"keywords" : [
"yii2",
"settings",
"config",
"key-value"
],
"homepage" : "https://github.com/Tapakan/yii2-settings.git",
"license" : "MIT",
"authors" : [
{
"name" : "Alexander Oganov",
"email": "[email protected]",
"role" : "Developer"
}
],
"require" : {
"php" : ">=5.6",
"yiisoft/yii2": "~2.0"
},
"require-dev" : {
"codeception/codeception" : "^2.2",
"codeception/verify" : "~0.3.1",
"codeception/specify" : "~0.4.5",
"squizlabs/php_codesniffer": "~2.8.0",
"satooshi/php-coveralls" : "~1.0",
"phpunit/php-code-coverage": "~4.0",
"fzaninotto/faker" : "^1.6"
},
"autoload" : {
"psr-4": {
"Tapakan\\Settings\\" : "src",
"Tapakan\\Settings\\Tests\\": "tests"
}
},
"extra" : {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url" : "https://asset-packagist.org"
}
]
}