diff --git a/composer.json b/composer.json index 64a02cb..fc1e0d6 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,8 @@ { "name": "narrowspark/coding-standard", - "type": "library", "description": "The Narrowspark Coding Standard is a set of phpstan, psalm, infection, rector and php-cs-fixer rules applied to all Narrowspark projects.", + "license": "MIT", + "type": "library", "keywords": [ "narrowspark", "cs", @@ -13,8 +14,6 @@ "coding-standard", "rector" ], - "homepage": "https://github.com/narrowspark/coding-standard", - "license": "MIT", "authors": [ { "name": "Daniel Bannert", @@ -23,19 +22,24 @@ "role": "Developer" } ], + "homepage": "https://github.com/narrowspark/coding-standard", + "support": { + "issues": "https://github.com/narrowspark/coding-standard/issues", + "source": "https://github.com/narrowspark/coding-standard" + }, "require": { "php": "^8.0", - "infection/infection": "^0.22.0", + "infection/infection": "^0.26.0", "narrowspark/php-cs-fixer-config": "~6.3.2", "phpstan/phpstan": "^0.12.80", "phpstan/phpstan-deprecation-rules": "^0.12.6", "phpstan/phpstan-mockery": "^0.12.12", "phpstan/phpstan-phpunit": "^0.12.17", "phpstan/phpstan-strict-rules": "^0.12.9", - "psalm/plugin-mockery": "~0.7.0", - "psalm/plugin-phpunit": "^0.15.1", - "rector/rector": "^0.10.0", - "rector/rector-phpunit": "^0.10.0", + "psalm/plugin-mockery": "~0.9.0", + "psalm/plugin-phpunit": "^0.16.0", + "rector/rector": "^0.12.0", + "rector/rector-phpunit": "^0.11.0", "slam/phpstan-extensions": "^5.1.0", "symplify/phpstan-rules": "^9.2", "thecodingmachine/phpstan-strict-rules": "^0.12.1", @@ -49,6 +53,13 @@ "phpstan/phpstan-doctrine": "Doctrine extensions for PHPStan (*)", "phpstan/phpstan-php-parser": "PHP-Parser extensions for PHPStan (*)" }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload-dev": { + "psr-4": { + "": "bin" + } + }, "config": { "preferred-install": "dist", "sort-packages": true @@ -58,21 +69,10 @@ "dev-main": "5.3-dev" } }, - "autoload-dev": { - "psr-4": { - "": "bin" - } - }, - "minimum-stability": "dev", - "prefer-stable": true, "scripts": { "build": "\\CreatePhpCsFixerList::build", "cs": "php-cs-fixer fix --config=\"./.php_cs\" --ansi", "cs:check": "php-cs-fixer fix --config=\"./.php_cs\" --ansi --dry-run", "phpstan": "phpstan analyse -c ./base_rules.neon ./" - }, - "support": { - "issues": "https://github.com/narrowspark/coding-standard/issues", - "source": "https://github.com/narrowspark/coding-standard" } }