psalm-plugin-symfony/composer.json

73 lines
2.1 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": {
2022-10-21 00:23:13 +02:00
"php": "^7.4 || ^8.0",
"ext-simplexml": "*",
2022-12-12 03:53:31 +01:00
"symfony/framework-bundle": "^5.0 || ^6.0",
2022-12-12 04:43:40 +01:00
"vimeo/psalm": "^5.1"
2019-11-14 08:27:50 +01:00
},
"require-dev": {
2022-12-12 03:53:31 +01:00
"symfony/form": "^5.0 || ^6.0",
"doctrine/annotations": "^1.8",
2022-12-12 04:51:56 +01:00
"doctrine/orm": "^2.9",
"phpunit/phpunit": "~7.5 || ~9.5",
"symfony/cache-contracts": "^1.0 || ^2.0",
"symfony/console": "*",
2022-12-12 03:53:31 +01:00
"symfony/messenger": "^5.0 || ^6.0",
"symfony/security-guard": "*",
2022-12-12 03:53:31 +01:00
"symfony/serializer": "^5.0 || ^6.0",
"symfony/validator": "*",
"twig/twig": "^2.10 || ^3.0",
2022-10-21 00:23:13 +02:00
"weirdan/codeception-psalm-module": "dev-master"
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\\Fixture\\": ["tests/fixture"],
2020-03-13 15:51:18 +01:00
"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 --find-dead-code --find-unused-psalm-suppress --long-progress",
2020-03-10 17:00:55 +01:00
"phpunit": "phpunit --testdox",
"codeception": [
2019-11-14 08:27:50 +01:00
"codecept build",
"codecept run -v -g symfony-common"
2019-11-14 08:27:50 +01:00
]
2020-05-27 16:08:01 +02:00
},
"suggest": {
"weirdan/doctrine-psalm-plugin": "If Doctrine is used, it is recommended install this plugin"
},
"minimum-stability": "beta"
2019-11-12 14:36:05 +01:00
}