Files
DataEnrichmentKit/composer.json
2025-11-27 02:10:03 +04:00

37 lines
873 B
JSON

{
"name": "diffhead/php-data-enrichment-kit",
"description": "Data enrichment library. A suitable component for microservice architectures.",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"php", "data enrichment", "data transformation", "psr",
"pipeline", "message", "processing", "serializer", "parser",
"microservice", "php 8"
],
"autoload": {
"psr-4": {
"Diffhead\\PHP\\DataEnrichmentKit\\": "src/",
"Diffhead\\PHP\\DataEnrichmentKit\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"psr/http-message": "^1.0",
"nyholm/psr7": "^1.8.2"
},
"require-dev": {
"phpunit/phpunit": "^12.2"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable",
"authors": [
{
"name": "Viktor S.",
"email": "thinlineseverywhere@gmail.com"
}
]
}