psalm-plugin-symfony/composer.json
2020-03-13 10:51:18 -04:00

56 lines
1.3 KiB
JSON

{
"name": "psalm/plugin-symfony",
"description": "Psalm Plugin for Symfony",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Farhad Safarov",
"email": "farhad.safarov@gmail.com"
}
],
"require": {
"php": "^7.1",
"ext-simplexml": "*",
"vimeo/psalm": "^3.7",
"symfony/framework-bundle": "^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"codeception/base": "^2.5",
"weirdan/codeception-psalm-module": "^0.2.2",
"phpunit/phpunit": "~7.5"
},
"autoload": {
"psr-4": {
"Psalm\\SymfonyPsalmPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Psalm\\SymfonyPsalmPlugin\\Tests\\Acceptance\\": ["tests/acceptance/_support"],
"Psalm\\SymfonyPsalmPlugin\\Tests\\": ["tests/unit"]
}
},
"extra": {
"psalm" : {
"pluginClass": "Psalm\\SymfonyPsalmPlugin\\Plugin"
}
},
"scripts": {
"check": [
"@analyze",
"@test"
],
"test": [
"@phpunit",
"@codeception"
],
"analyze": "psalm",
"phpunit": "phpunit --testdox",
"codeception": [
"codecept build",
"codecept run -v"
]
}
}