PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Julian Finkler   PHP PSR-7 Implementation of Streams   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP PSR-7 Implementation of Streams
Implements the access to data as defined in PSR-7
Author: By
Last change: change: Dependencies updated and sca fixed
CS fixed, copyright updated and changelog updated
Updated PHP CS Fixer
Merge remote-tracking branch 'origin/master'
Updated composer.json and removed hhvm from .travis.yml
First release
Date: 7 days ago
Size: 1,315 bytes
 

Contents

Class file image Download
{ "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" ] } }