{
    "name": "crazycodr/roman",
    "description": "Provides a simple decimal/roman number converter",
    "type": "library",
    "keywords": [
        "roman",
        "convert",
        "format"
    ],
    "license": "MIT",
    "support": {
        "issues": "https://github.com/crazycodr/csv/issues"
    },
    "authors": [
        {
            "name": "Mathieu Dumoulin",
            "email": "thecrazycodr@gmail.com"
        }
    ],
    "autoload": {
        "psr-4": {
            "CrazyCodr\\Converters\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "CrazyCodr\\Converters\\Test\\": "test"
        }
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^2.11",
        "phpunit/phpunit": "^7.1",
        "league/csv": "^8.0"
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "lint": [
            "php-cs-fixer fix -v --diff --dry-run src",
            "php-cs-fixer fix -v --diff --dry-run test"
        ],
        "fix": [
            "php-cs-fixer fix -v --diff src",
            "php-cs-fixer fix -v --diff test"
        ]
    }
}