{
  "name": "rjt/title-case",
  "description": "Smart capitalization for names, titles, and addresses.",
  "type": "library",
  "license": "MIT",
  "require": {
    "php": ">=8.1"
  },
  "suggest": {
    "ext-mbstring": "For best Unicode casing behavior (recommended)."
  },
  "autoload": {
    "psr-4": {
      "RJT\\TitleCase\\": "src/"
    },
    "files": [
      "src/capitalize.php"
    ]
  },
  "autoload-dev": {
    "psr-4": {
      "RJT\\TitleCase\\Tests\\": "tests/"
    }
  },
  "require-dev": {
    "phpunit/phpunit": "^10",
    "phpstan/phpstan": "^1.11"
  },
  "scripts": {
    "test": "phpunit",
    "analyse": "phpstan analyse --no-progress --debug",
    "qa": [
      "@test",
      "@analyse"
    ]
  },
  "minimum-stability": "stable",
  "prefer-stable": true,
  "config": {
    "sort-packages": true
  }
}
