mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-25 04:12:14 +08:00
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "respect/stringifier",
|
|
"description": "Converts any value to a string",
|
|
"keywords": ["respect", "stringifier", "stringify"],
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Respect/Stringifier Contributors",
|
|
"homepage": "https://github.com/Respect/Stringifier/graphs/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1"
|
|
},
|
|
"require-dev": {
|
|
"malukenho/docheader": "^0.1.7",
|
|
"phpstan/phpstan": "^1.10",
|
|
"phpstan/phpstan-deprecation-rules": "^1.1",
|
|
"phpstan/phpstan-phpunit": "^1.3",
|
|
"phpstan/phpstan-strict-rules": "^1.5",
|
|
"phpunit/phpunit": "^10.0",
|
|
"respect/coding-standard": "^4.0",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Respect\\Stringifier\\": "src/",
|
|
"Respect\\Stringifier\\Test\\": "tests/src/",
|
|
"Respect\\Stringifier\\Test\\Unit\\": "tests/unit"
|
|
},
|
|
"files": [
|
|
"src/stringify.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"docheader": "vendor/bin/docheader check src/ tests/",
|
|
"phpcs": "vendor/bin/phpcs",
|
|
"phpstan": "vendor/bin/phpstan",
|
|
"phpunit": "vendor/bin/phpunit",
|
|
"phpunit-integration": "vendor/bin/phpunit --testsuite=integration",
|
|
"phpunit-unit": "vendor/bin/phpunit --testsuite=unit",
|
|
"qa": [
|
|
"@docheader",
|
|
"@phpcs",
|
|
"@phpstan",
|
|
"@phpunit"
|
|
]
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|