-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (52 loc) · 1.29 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
{
"name": "sam-it/yii2-virtual-fields",
"description": "Implementation of virtual fields for Yii2 AR",
"license": "MIT",
"authors": [
{
"name": "Sam Mousa",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SamIT\\Yii2\\VirtualFields\\" : ["src/"]
}
},
"require": {
"php": ">= 8.1"
},
"autoload-dev": {
"classmap": [
"vendor/yiisoft/yii2/Yii.php",
"tests"
]
},
"require-dev": {
"yiisoft/yii2": "^2.0",
"codeception/codeception": "> 5",
"codeception/module-yii2": "^1.1",
"codeception/module-asserts": "^3",
"vimeo/psalm": "^5",
"symplify/easy-coding-standard": "^12",
"phpstan/phpstan": "^1",
"captainhook/plugin-composer": "^5.3",
"ramsey/conventional-commits": "^1.3"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"test": "codecept run --coverage"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"composer/package-versions-deprecated": true,
"captainhook/plugin-composer": true
}
}
}