-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
43 lines (43 loc) · 986 Bytes
/
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": "yii2mod/yii2-cart",
"description": "Yii2 Shopping cart",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Dmitry Semenov",
"email": "[email protected]"
},
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "~2.0.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "^7.3"
},
"autoload": {
"psr-4": {
"yii2mod\\cart\\": ""
}
},
"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"
}
]
}