{
"name": "mintware-de/streams",
"description": "A implementation of the PSR-7 StreamInterface",
"keywords": [
"PSR",
"PSR-7",
"StreamInterface",
"ResourceStream",
"MemoryStream",
"InputStream",
"OutputStream",
"FileStream",
"Resource"
],
"type": "library",
"require": {
"php": "^8.2",
"psr/http-message": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0",
"phpstan/phpstan": "^1.11.4",
"friendsofphp/php-cs-fixer": "^v3.58.1"
},
"license": "MIT",
"authors": [
{
"name": "Julian Finkler",
"email": " [email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MintWare\\Streams\\": "src/",
"MintWare\\Tests\\Streams\\": "tests/"
}
},
"scripts": {
"fix-cs": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12"
],
"fix-cs:dry-run": [
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12 --dry-run",
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12 --dry-run"
],
"phpstan": [
"./vendor/bin/phpstan"
],
"test": [
"./vendor/bin/phpunit"
]
}
}
|