{ "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": "*", "symfony/framework-bundle": "^3.0 || ^4.0 || ^5.0", "vimeo/psalm": "^3.11.4" }, "require-dev": { "codeception/base": "^2.5", "doctrine/orm": "^2.7", "phpunit/phpunit": "~7.5", "symfony/console": "*", "weirdan/codeception-psalm-module": "~0.8" }, "autoload": { "psr-4": { "Psalm\\SymfonyPsalmPlugin\\": "src" } }, "autoload-dev": { "psr-4": { "Psalm\\SymfonyPsalmPlugin\\Tests\\Acceptance\\": ["tests/acceptance/_support"], "Psalm\\SymfonyPsalmPlugin\\Tests\\": ["tests/unit"] } }, "config": { "sort-packages": true }, "extra": { "psalm" : { "pluginClass": "Psalm\\SymfonyPsalmPlugin\\Plugin" } }, "scripts": { "check": [ "@analyze", "@test" ], "test": [ "@phpunit", "@codeception" ], "analyze": "psalm", "phpunit": "phpunit --testdox", "codeception": [ "codecept build", "codecept run -v" ] }, "suggest": { "weirdan/doctrine-psalm-plugin": "If Doctrine is used, it is recommended install this plugin" } }