diff --git a/composer.json b/composer.json index 64a02cb..2915425 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,6 +22,11 @@ "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", @@ -43,12 +47,19 @@ }, "require-dev": { "phpunit/phpunit": "^9.5.2", - "symfony/var-exporter": "^5.2.3" + "symfony/var-exporter": "^6.0.0" }, "suggest": { "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" } }