Talesoft/tale-stream

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "talesoft/tale-stream",
    "type": "library",
    "keywords": ["stream", "stream-wrapper", "psr-7", "psr-17", "memory-stream", "temp-stream"],
    "description": "A basic PSR-7 and PSR-17 compatible stream utility library",
    "license": "MIT",
    "homepage": "http://docs.talesoft.codes/php/tale/stream",
    "scripts": {
        "test": "phpunit",
        "test:coverage-html": "phpunit --coverage-html=coverage",
        "lint": "phpcs",
        "lint:fix": "phpcbf"
    },
    "authors": [
        {
            "name": "Torben Köhn",
            "email": "torben@talesoft.codes"
        }
    ],
    "require": {
        "php": ">=7.4.0",
        "psr/http-message": "^1.0",
        "psr/http-factory": "^1.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.4",
        "squizlabs/php_codesniffer": "^3.5"
    },
    "autoload": {
        "psr-4": {
            "Tale\\": "src",
            "Tale\\Test\\": "tests"
        },
        "files": ["src/functions.php"]
    },
    "provide": {
        "psr/http-message-implementation": "~1.0",
        "psr/http-factory-implementation": "~1.0"
    }
}