-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 918 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 918 Bytes
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
{
"name": "vkcom/modulite-phpstan",
"description": "A PHPStan plugin providing Modulite support for plain PHP (not KPHP) projects",
"license": "MIT",
"type": "phpstan-extension",
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^1.8",
"symfony/polyfill-php80": "^v1.27.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"require-dev": {
"phpstan/phpstan-phpunit": "^1.2",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ModulitePHPStan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ModuliteTests\\": "tests/"
},
"classmap": [
"tests/"
]
},
"config": {
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"test:unit": "vendor/bin/phpunit --configuration tests/phpunit.xml"
}
}