-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 982 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": "nmokkenstorm/phpstan-pestphp",
"description": "PestPHP helper library for PHPStan",
"type": "library",
"require": {
"phpstan/phpstan": "^0.12.0",
"php": "7.4.* | 8.*"
},
"require-dev": {
"pestphp/pest": "^0.3.1",
"phpunit/phpunit": "^9.0.0"
},
"license": "MIT",
"authors": [
{
"name": "Niels Mokkentstorm",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PestPHPStan\\": "src"
}
},
"config": {
"sort-packages" : true
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": [
"composer test:types",
"composer test:unit"
],
"test:types": "vendor/bin/phpstan analyse ./{src,tests} --level 8",
"test:unit": "vendor/bin/phpunit"
}
}