71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "overtrue/pinyin",
|
|
"description": "Chinese to pinyin translator.",
|
|
"keywords": [
|
|
"chinese",
|
|
"pinyin",
|
|
"cn2pinyin"
|
|
],
|
|
"homepage": "https://github.com/overtrue/pinyin",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "overtrue",
|
|
"homepage": "http://github.com/overtrue",
|
|
"email": "anzhengchao@gmail.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Overtrue\\Pinyin\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Overtrue\\Pinyin\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.0.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.1",
|
|
"brainmaestro/composer-git-hooks": "^2.7",
|
|
"friendsofphp/php-cs-fixer": "^3.2",
|
|
"nunomaduro/termwind": "^1.13",
|
|
"laravel/pint": "^1.10"
|
|
},
|
|
"bin": ["bin/pinyin"],
|
|
"extra": {
|
|
"hooks": {
|
|
"pre-commit": [
|
|
"composer pint",
|
|
"composer test"
|
|
],
|
|
"pre-push": [
|
|
"composer pint",
|
|
"composer test"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-update-cmd": [
|
|
"cghooks update"
|
|
],
|
|
"post-merge": "composer install",
|
|
"post-install-cmd": [
|
|
"cghooks remove",
|
|
"cghooks add --ignore-lock"
|
|
],
|
|
"cghooks": "vendor/bin/cghooks",
|
|
"pint": "vendor/bin/pint ./src ./tests",
|
|
"fix-style": "vendor/bin/pint ./src ./tests",
|
|
"test": "vendor/bin/phpunit --colors=always",
|
|
"build": "php ./bin/build"
|
|
},
|
|
"scripts-descriptions": {
|
|
"test": "Run all tests.",
|
|
"fix-style": "Run style checks and fix violations."
|
|
}
|
|
}
|