-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
47 lines (47 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "yii2mod/yii2-settings",
"description": "Yii2 Settings Module",
"type": "yii2-extension",
"keywords": [
"yii2",
"settings",
"config",
"storage"
],
"license": "MIT",
"authors": [
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "~2.0.10",
"yii2mod/yii2-editable": "*",
"yii2mod/yii2-enum": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "^7.3"
},
"autoload": {
"psr-4": {
"yii2mod\\settings\\": ""
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpunit",
"@phpcs"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}