php-extension-check/composer.json

68 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2021-05-08 21:09:48 +00:00
{
"name": "fbrinker/extension-check",
2021-05-08 22:46:45 +00:00
"description": "Checks your code for usages of loaded PHP Extensions",
"keywords": [
"extensions",
"php-extensions",
"unused",
"php-parser"
],
"license": "MIT",
"authors": [
{
"name": "Florian Brinker",
"email": "mail+extension-check@f-brinker.de"
}
],
2021-05-08 21:09:48 +00:00
"bin": [
"bin/extension-check"
],
"autoload": {
"psr-4": {
"Fbrinker\\ExtensionCheck\\": "src"
}
2021-05-08 22:46:45 +00:00
},
"autoload-dev": {
"psr-4": {
"Fbrinker\\ExtensionCheck\\Tests\\Unit\\": "tests/Unit"
}
2021-05-08 21:09:48 +00:00
},
"require": {
"php": ">=7.2",
2021-05-08 22:46:45 +00:00
"laminas/laminas-servicemanager": "^3.5",
2021-05-08 21:09:48 +00:00
"nikic/php-parser": "^4.10",
"symfony/console": "^5.2",
"symfony/finder": "^5.2"
2021-05-08 22:46:45 +00:00
},
"require-dev": {
"phpstan/phpstan": "^0.12.86",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
2021-05-09 21:23:28 +00:00
},
"scripts": {
"check": [
"./vendor/bin/phpcs",
"./vendor/bin/phpstan analyse"
],
2022-05-25 10:10:23 +00:00
"fix": [
"./vendor/bin/phpcbf",
"./vendor/bin/phpcs"
],
"test": [
"./vendor/bin/phpunit --no-coverage"
],
"coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/phpunit"
2021-05-09 21:23:28 +00:00
]
},
"scripts-descriptions": {
"check": "Check the sources for problems and style violations",
"test": "Run all tests"
2021-05-08 21:09:48 +00:00
}
}