Aerendir/PHPTextMatrix

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "serendipity_hq/component-text-matrix",
    "description": "A PHP library to render an array representing a matrix as a plain text table.",
    "type": "library",
    "license": "MIT",
    "keywords": ["php", "array", "matrix", "txt", "text", "plain txt", "plain text", "table", "text table", "txt table"],
    "homepage": "https://github.com/Aerendir/component-text-matrix",
    "authors": [
        {
            "name": "Adamo Aerendir Crespi",
            "email": "aerendir@serendipityhq.com"
        }
    ],
    "require": {
        "php": "^7.4|^8.0",
        "ext-iconv": "*",
        "symfony/options-resolver": "^4.4|^5.4|^6.0",
        "thecodingmachine/safe": "^1.0|^2.0"
    },
    "require-dev": {
        "ext-ast": "*",
        "bamarni/composer-bin-plugin": "^1.4",
        "phpstan/phpstan": "1.8.2",
        "phpstan/phpstan-phpunit": "1.1.1",
        "rector/rector": "0.13.9",
        "roave/security-advisories": "dev-master",
        "serendipity_hq/rector-config": "^1.0",
        "symfony/var-dumper": "^4.4|^5.4|^6.0",
        "thecodingmachine/phpstan-safe-rule": "1.2.0"
    },
    "autoload": {
        "psr-4": {
            "SerendipityHQ\\Component\\PHPTextMatrix\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "SerendipityHQ\\Component\\PHPTextMatrix\\Tests\\": "tests"
        }
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "bamarni/composer-bin-plugin": true
        }
    },
    "scripts": {
        "bin": "echo 'bin not installed'",
        "post-install-cmd": [
            "@composer bin all install --ansi"
        ],
        "post-update-cmd": [
            "@composer bin all update --ansi"
        ]
    },
    "extra": {
        "bamarni-bin": {
            "bin-links": false
        }
    }
}