psalm-plugin-symfony/composer.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2019-11-12 14:36:05 +01:00
{
2020-03-13 15:43:43 +01:00
"name": "psalm/plugin-symfony",
2019-11-12 14:36:05 +01:00
"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",
"ext-simplexml": "*",
"symfony/framework-bundle": "^3.0 || ^4.0 || ^5.0",
"vimeo/psalm": "^3.11"
2019-11-14 08:27:50 +01:00
},
"require-dev": {
"codeception/base": "^2.5",
"phpunit/phpunit": "~7.5",
"symfony/console": "*",
"weirdan/codeception-psalm-module": "^0.2.2"
2019-11-14 08:27:50 +01:00
},
2019-11-12 14:36:05 +01:00
"autoload": {
"psr-4": {
2020-03-13 15:51:18 +01:00
"Psalm\\SymfonyPsalmPlugin\\": "src"
2019-11-12 14:36:05 +01:00
}
},
2019-11-14 08:27:50 +01:00
"autoload-dev": {
"psr-4": {
2020-03-13 15:51:18 +01:00
"Psalm\\SymfonyPsalmPlugin\\Tests\\Acceptance\\": ["tests/acceptance/_support"],
"Psalm\\SymfonyPsalmPlugin\\Tests\\": ["tests/unit"]
2019-11-14 08:27:50 +01:00
}
},
"config": {
"sort-packages": true
},
2019-11-12 14:36:05 +01:00
"extra": {
"psalm" : {
2020-03-13 15:51:18 +01:00
"pluginClass": "Psalm\\SymfonyPsalmPlugin\\Plugin"
2019-11-12 14:36:05 +01:00
}
},
"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
"test": [
2020-03-10 17:00:55 +01:00
"@phpunit",
"@codeception"
],
"analyze": "psalm",
"phpunit": "phpunit --testdox",
"codeception": [
2019-11-14 08:27:50 +01:00
"codecept build",
"codecept run -v"
]
2019-11-12 14:36:05 +01:00
}
}