-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.33 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
55
56
57
58
59
{
"name": "milan-miscevic/yii2crud",
"type": "library",
"description": "Basic CRUD operations in the Yii2 framework",
"keywords": [
"yii2",
"crud",
"basic",
"module"
],
"license": "MIT",
"authors": [
{
"name": "Milan Miščević",
"email": "milan.miscevic@gmail.com"
}
],
"require": {
"php": "^7.2",
"yiisoft/yii2": "^2.0.38",
"yiisoft/yii2-bootstrap": "^2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8",
"vimeo/psalm": "^3 || ^4"
},
"config": {
"fxp-asset": {
"enabled": false
},
"process-timeout": 1800,
"sort-packages": true
},
"autoload": {
"psr-4": {
"mmm\\yii2crud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"mmm\\yii2crud\\tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"coverage": "phpunit --coverage-text",
"fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"test": "phpunit"
}
}