-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.64 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "yii2-extensions/phpstan",
"type": "library",
"description": "PHPStan extension for Yii2",
"keywords": [
"yii2",
"phpstan"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"nikic/php-parser": "^4.1|^5.4.0",
"phpstan/phpstan": "^2.1",
"yiisoft/yii2": "^2.0.54|^22"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.7",
"php-forge/coding-standard": "^0.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"yii2\\extensions\\phpstan\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yii2\\extensions\\phpstan\\tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.5.x-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ondrejmirtes/composer-attribute-collector": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"rector": "./vendor/bin/rector process",
"static": "./vendor/bin/phpstan --memory-limit=-1",
"tests": "php -d memory_limit=-1 ./vendor/bin/phpunit"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}