diff --git a/composer.json b/composer.json index c6f7a483..8d795ab5 100644 --- a/composer.json +++ b/composer.json @@ -1,20 +1,10 @@ { "name": "phpstan/phpstan-strict-rules", - "description": "Extra strict and opinionated rules for PHPStan", "type": "phpstan-extension", - "license": ["MIT"], - "minimum-stability": "dev", - "prefer-stable": true, - "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - }, - "phpstan": { - "includes": [ - "rules.neon" - ] - } - }, + "description": "Extra strict and opinionated rules for PHPStan", + "license": [ + "MIT" + ], "require": { "php": "~7.1", "nikic/php-parser": "^4.0", @@ -29,19 +19,33 @@ "phpunit/phpunit": "^7.0", "slevomat/coding-standard": "^4.5.2" }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, "autoload": { "psr-4": { "PHPStan\\": "src/" } }, "autoload-dev": { - "classmap": ["tests/"], + "classmap": [ + "tests/" + ], "files": [ "tests/Rules/Functions/data/missing-function-parameter-typehint.php", "tests/Rules/Functions/data/missing-function-return-typehint.php" ] }, - "config": { - "sort-packages": true - } + "minimum-stability": "dev", + "prefer-stable": true }