forked from built-fast/phpstan-sensitive-parameter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.72 KB
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
56
57
58
59
60
61
62
63
{
"name": "lychee-org/phpstan-sensitive-parameter-values",
"description": "PHPStan extension for better support of SensitiveParameter and SensitiveParameterValue attributes.",
"type": "phpstan-extension",
"license": "MIT",
"homepage": "https://github.com/LycheeOrg/phpstan-sensitive-parameter-values",
"keywords": [
"phpstan",
"phpstan-extension",
"static-analysis",
"security",
"sensitive-parameter",
"php",
"code-quality"
],
"authors": [
{
"name": "LycheeOrg",
"homepage": "https://github.com/LycheeOrg/phpstan-sensitive-parameter-values"
},
{
"name": "Josh Priddle",
"homepage": "https://github.com/built-fast/phpstan-sensitive-parameter"
}
],
"support": {
"issues": "https://github.com/LycheeOrg/phpstan-sensitive-parameter-values/issues",
"forum": "https://github.com/LycheeOrg/phpstan-sensitive-parameter-values/discussions",
"source": "https://github.com/LycheeOrg/phpstan-sensitive-parameter-values"
},
"require": {
"php": "^8.2",
"phpstan/phpstan": "^2.1.3"
},
"autoload": {
"psr-4": {
"LycheeOrg\\PHPStan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"require-dev": {
"pestphp/pest": "^3.8",
"laravel/pint": "^1.22"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}