keboola/php-csv

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "keboola/csv",
    "type": "library",
    "description": "Keboola CSV reader and writer",
    "keywords": [
        "csv",
        "RFC4180"
    ],
    "authors": [
        {
            "name": "Keboola",
            "email": "devel@keboola.com"
        }
    ],
    "homepage": "http://keboola.com",
    "license": "MIT",
    "autoload": {
        "psr-4": {
            "Keboola\\Csv\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Keboola\\Csv\\Tests\\": "tests/"
        }
    },
    "require": {
        "php": ">=7.4"
    },
    "require-dev": {
        "ext-json": "*",
        "keboola/coding-standard": "^15.0",
        "php-parallel-lint/php-parallel-lint": "^1.3",
        "phpstan/phpstan": "^1.10",
        "phpunit/phpunit": ">=7.5 <=9.6",
        "phpstan/phpdoc-parser": "^1.25"
    },
    "scripts": {
        "phpstan": "phpstan analyse ./src ./tests --level=max --no-progress -c phpstan.neon",
        "phpcs": "phpcs -n --ignore=vendor --extensions=php .",
        "phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
        "phplint": "parallel-lint -j 10 --exclude vendor .",
        "tests": "phpunit",
        "build": [
            "@phplint",
            "@phpcs",
            "@phpstan",
            "@tests"
        ],
        "ci": [
            "@composer validate --strict",
            "@build"
        ]
    },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    }
}