sensitiveMessageFormatter/composer.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-21 22:28:56 +01:00
{
"name": "d3/sensitive-message-formatter",
"type": "library",
"description": "a message formatter it can replace sensitive data from log",
"keywords": [
"Guzzle",
"log",
"message",
"formatter",
"sensitive",
"credentials",
"replacement"
],
"homepage": "https://www.d3data.de",
"license": "MIT",
"authors": [
{
"name": "Daniel Seifert",
"email": "git@daniel-seifert.com"
}
],
"require": {
2024-12-24 00:05:56 +01:00
"php": "^8.0",
2025-01-01 22:55:36 +01:00
"guzzlehttp/guzzle": "^7.0"
2024-12-24 00:05:56 +01:00
},
"require-dev": {
"php": "^8.2",
2024-12-24 00:07:06 +01:00
"phpunit/phpunit": "^10.5",
2024-12-24 00:05:56 +01:00
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.0"
2024-12-21 22:28:56 +01:00
},
"autoload": {
"psr-4": {
"D3\\SensitiveMessageFormatter\\": "src/"
}
2024-12-24 00:05:56 +01:00
},
2024-12-24 00:07:06 +01:00
"autoload-dev": {
"psr-4": {
"D3\\SensitiveMessageFormatter\\tests\\": "tests/"
}
},
2024-12-24 00:05:56 +01:00
"scripts": {
2024-12-24 00:07:06 +01:00
"test": "./vendor/bin/phpunit",
2024-12-24 00:05:56 +01:00
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose",
"check-code": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress --ansi"
2024-12-21 22:28:56 +01:00
}
}