v-wordpress-plugin-updater/vendor/szepeviktor/phpstan-wordpress/composer.json
copilot-swe-agent[bot] bd87399377
Changes before error encountered
Agent-Logs-Url: https://github.com/djav1985/v-wordpress-plugin-updater/sessions/e0bca9e8-bb5b-4d60-be44-ce2a80dc273a

Co-authored-by: djav1985 <174835544+djav1985@users.noreply.github.com>
2026-04-06 00:48:51 +00:00

69 lines
1.8 KiB
JSON

{
"name": "szepeviktor/phpstan-wordpress",
"description": "WordPress extensions for PHPStan",
"license": "MIT",
"type": "phpstan-extension",
"keywords": [
"static analysis",
"code analysis",
"code analyse",
"wordpress",
"phpstan"
],
"require": {
"php": "^7.4 || ^8.0",
"php-stubs/wordpress-stubs": "^6.6.2",
"phpstan/phpstan": "^2.0"
},
"require-dev": {
"composer/composer": "^2.1.14",
"composer/semver": "^3.4",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.0",
"szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset": "^1.0",
"wp-coding-standards/wpcs": "3.1.0 as 2.3.0"
},
"suggest": {
"swissspidy/phpstan-no-private": "Detect usage of internal core functions, classes and methods"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SzepeViktor\\PHPStan\\WordPress\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"test": [
"@test:syntax",
"@test:phpunit",
"@test:cs",
"@test:phpstan"
],
"test:cs": "phpcs",
"test:cs:fix": "phpcbf",
"test:phpstan": "phpstan analyze",
"test:phpunit": "phpunit",
"test:syntax": "parallel-lint bootstrap.php src/ tests/"
}
}