{
    "name": "tamtamchik/namecase",
    "type": "library",
    "description": "This package allows you to convert names into the correct case where possible.",
    "keywords": [
        "tamtamchik",
        "namecase",
        "strings",
        "properly",
        "cased"
    ],
    "homepage": "https://github.com/tamtamchik/namecase",
    "license": "MIT",
    "authors": [
        {
            "name": "Yuri Tkachenko",
            "email": " [email protected]",
            "homepage": "http://tamtamchika.net"
        }
    ],
    "require": {
        "php": "^7.2",
        "ext-mbstring": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.0",
        "scrutinizer/ocular": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "Tamtamchik\\NameCase\\": "src"
        }
    },
    "scripts": {
        "tests": "vendor/bin/phpunit --testdox",
        "demo": "php examples/demo.php"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.0-dev",
            "1.0.x": "1.0.x-dev"
        }
    }
}
 
  |