-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.25 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
{
"name": "swisnl/phpstan-faker",
"type": "phpstan-extension",
"description": "PHPStan Reflection extension for custom Faker providers",
"keywords": [
"phpstan",
"reflection",
"faker",
"testing"
],
"homepage": "https://github.com/swisnl/phpstan-faker",
"license": "MIT",
"authors": [
{
"name": "Rolf van de Krol",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"phpstan/phpstan": "^1.0|^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.21",
"laravel/pint": "^1.2",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Swis\\PHPStan\\Reflection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swis\\PHPStan\\Reflection\\Tests\\": "tests"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}