forked from twoday-commerce/magento2-psalm
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.14 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
{
"name": "tdgroot/magento2-psalm",
"description": "Psalm plugin for Magento 2",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Marcus Pettersen Irgens",
"email": "[email protected]"
},
{
"name": "Timon de Groot",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"vimeo/psalm": "^4.0",
"php": "^7.3",
"ext-simplexml": "*"
},
"extra": {
"psalm": {
"pluginClass": "Visma\\Magento2Psalm\\Plugin"
}
},
"autoload": {
"psr-4": {
"Visma\\Magento2Psalm\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Visma\\Magento2Psalm\\": [
"tests/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"magento/framework": "^100"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}