-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1000 Bytes
/
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
{
"name": "smile/magento2-smilelab-phpstan",
"description": "PHPStan extension for Magento projects.",
"type": "phpstan-extension",
"license": "OSL-3.0",
"authors": [
{
"name": "Smile Community of Practice",
"homepage": "https://www.smile.eu"
}
],
"require": {
"php": "^7.4 || ^8.0",
"magento/framework": "*",
"phpstan/phpstan": "^0.12 || ^1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"SmileLab\\PhpStan\\": "src/"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}