From d7ad61c79f53abd32d7a54271e3a7808e80f1ae8 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 15 May 2022 20:53:02 +0000 Subject: [PATCH 1/2] chore(deps): update dependency symfony/var-exporter to v6 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 64a02cb..e035fa9 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,7 @@ }, "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 (*)", From f4bfe14a43bcb8c4ae370a7f3c5a57c65e803f78 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Sun, 15 May 2022 20:53:24 +0000 Subject: [PATCH 2/2] chore: normalize composer.json --- composer.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/composer.json b/composer.json index e035fa9..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", @@ -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" } }