2019-11-12 14:36:05 +01:00
|
|
|
{
|
|
|
|
"name": "seferov/symfony-psalm-plugin",
|
|
|
|
"description": "Psalm Plugin for Symfony",
|
|
|
|
"type": "psalm-plugin",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Farhad Safarov",
|
|
|
|
"email": "farhad.safarov@gmail.com"
|
|
|
|
}
|
|
|
|
],
|
2019-11-14 08:27:50 +01:00
|
|
|
"require": {
|
|
|
|
"php": "^7.1",
|
2019-12-04 13:02:53 +01:00
|
|
|
"vimeo/psalm": "^3.7",
|
|
|
|
"symfony/framework-bundle": "^3.0 || ^4.0 || ^5.0"
|
2019-11-14 08:27:50 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"codeception/base": "^2.5",
|
|
|
|
"weirdan/codeception-psalm-module": "^0.2.2"
|
|
|
|
},
|
2019-11-12 14:36:05 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Seferov\\SymfonyPsalmPlugin\\": "src"
|
|
|
|
}
|
|
|
|
},
|
2019-11-14 08:27:50 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Seferov\\SymfonyPsalmPlugin\\Tests\\": ["tests/_support"]
|
|
|
|
}
|
|
|
|
},
|
2019-11-12 14:36:05 +01:00
|
|
|
"extra": {
|
|
|
|
"psalm" : {
|
|
|
|
"pluginClass": "Seferov\\SymfonyPsalmPlugin\\Plugin"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check": [
|
2019-11-14 08:27:50 +01:00
|
|
|
"@analyze",
|
|
|
|
"@test"
|
2019-11-12 14:36:05 +01:00
|
|
|
],
|
2019-11-14 08:27:50 +01:00
|
|
|
"analyze": "psalm",
|
|
|
|
"test": [
|
|
|
|
"codecept build",
|
|
|
|
"codecept run -v"
|
|
|
|
]
|
2019-11-12 14:36:05 +01:00
|
|
|
}
|
|
|
|
}
|