-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
82 lines (82 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bitexpert/phpstan-magento",
"description": "PHPStan Magento Extension",
"type": "phpstan-extension",
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"captainhook/plugin-composer": true,
"magento/composer-dependency-version-audit-plugin": false
}
},
"license": "MIT",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^7.2.0 || ^8.1.0",
"ext-dom": "*",
"laminas/laminas-code": "~3.3.0 || ~3.4.1 || ~3.5.1 || ^4.5 || ^4.10",
"phpstan/phpstan": "~1.12.0",
"symfony/finder": "^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"conflict": {
"magento/framework": "<102.0.0"
},
"require-dev": {
"captainhook/captainhook": "^5.10.9",
"captainhook/plugin-composer": "^5.3.3",
"league/commonmark": "^2.3.1",
"madewithlove/license-checker": "^0.10.0 || ^1.4",
"magento/framework": ">=102.0.0",
"mikey179/vfsstream": "^1.6.10",
"nette/neon": "^3.3.3",
"nikic/php-parser": "^4.13.2",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.2.3",
"phpunit/phpunit": "^9.5.20",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-4": {
"bitExpert\\PHPStan\\": "src/bitExpert/PHPStan"
}
},
"autoload-dev": {
"psr-4": {
"bitExpert\\PHPStan\\": "tests/bitExpert/PHPStan"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=PSR2 ./src ./tests --ignore=src/Magento/*",
"cs-fix": "vendor/bin/phpcbf",
"check-license": "vendor/bin/license-checker check",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
]
}