-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.13 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.13 KB
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
60
61
62
63
64
65
66
67
{
"name": "yii2-extensions/nested-sets-behavior",
"type": "library",
"description": "yii2-extension",
"keywords": [
"yii2",
"nested",
"sets",
"behavior"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"yiisoft/yii2": "^2.0.53|^22"
},
"require-dev": {
"ext-dom": "*",
"ext-simplexml": "*",
"infection/infection": "^0.27|^0.31",
"maglnet/composer-require-checker": "^4.1",
"php-forge/support": "^0.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^10.2",
"rector/rector": "^2.1",
"symplify/easy-coding-standard": "^12.5",
"yii2-extensions/phpstan": "^0.3.0"
},
"autoload": {
"psr-4": {
"yii2\\extensions\\nestedsets\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yii2\\extensions\\nestedsets\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --only-covered --min-msi=100 --min-covered-msi=100 --test-framework-options=--group=sqlite",
"mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --only-covered --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --test-framework-options=--group=sqlite",
"rector": "./vendor/bin/rector process src",
"static": "./vendor/bin/phpstan --memory-limit=512M",
"tests": "./vendor/bin/phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}