-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
62 lines (62 loc) · 1.52 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
60
61
62
{
"name": "erickskrauch/phpstan-yii2",
"description": "Yii2 extension for PHPStan",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "ErickSkrauch",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"nikic/php-parser": "^4 || ^5",
"phpstan/phpstan": "^1.10",
"yiisoft/yii2": "~2.0.36"
},
"require-dev": {
"ely/php-code-style": "^1",
"ergebnis/composer-normalize": "^2.28",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "1.11.x-dev",
"phpstan/phpstan-phpunit": "^1",
"phpunit/phpunit": "^9"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"ErickSkrauch\\PHPStan\\Yii2\\": "src/"
},
"exclude-from-classmap": [
"src/Stubs/*"
]
},
"autoload-dev": {
"psr-4": {
"ErickSkrauch\\PHPStan\\Yii2\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon",
"rules.neon"
]
}
}
}