forked from leocavalcante/redact-sensitive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "globyapp/hash-sensitive",
"description": "Monolog processor to protect sensitive information from logging by hashing the values",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Justin Ruiter",
"email": "globy@justinruiter.nl"
},
{
"name": "sjustein",
"email": "hashsensitive@justinruiter.nl"
},
{
"name": "leocavalcante",
"email": "lc@leocavalcante.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"monolog/monolog": "^3.0"
},
"autoload": {
"psr-4": {
"GlobyApp\\HashSensitive\\": "src/"
}
},
"require-dev": {
"pestphp/pest": "v2.31.0",
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"vimeo/psalm": "^5.23",
"infection/infection": "^0.27.11"
},
"autoload-dev": {
"psr-4": {
"HashSensitiveTests\\": "tests/"
}
},
"scripts": {
"test": [
"composer exec phpunit"
],
"lint": [
"vendor/bin/php-cs-fixer fix src --dry-run --allow-risky=yes"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix src --allow-risky=yes"
],
"phpstan": [
"php -d memory_limit=1G ./vendor/bin/phpstan analyse -c phpstan.neon"
],
"psalm": [
"php ./vendor/bin/psalm"
],
"pest": [
"php ./vendor/bin/pest"
],
"coverage": [
"php ./vendor/bin/pest --coverage"
],
"infection": [
"php ./vendor/bin/infection"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"infection/extension-installer": true
}
}
}