From fe7a803a5a0dc2821a76684fa20e5adbfeac16e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivo=20Limic=CC=81?= Date: Sun, 2 Oct 2022 14:31:32 +0200 Subject: [PATCH] Normalizing composer.json with ergebnis/composer-normalize. --- composer.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index e14c5b8..af51930 100644 --- a/composer.json +++ b/composer.json @@ -13,16 +13,8 @@ "php": "7.4.* || 8.0.* || 8.1.* || 8.2.*" }, "require-dev": { - "phpunit/phpunit": "^9.5", - "phpstan/phpstan": "^1.8" - }, - "scripts": { - "test": [ - "@test:phpunit", - "@test:phpstan" - ], - "test:phpstan": "phpstan", - "test:phpunit": "phpunit" + "phpstan/phpstan": "^1.8", + "phpunit/phpunit": "^9.5" }, "autoload": { "psr-4": { @@ -36,5 +28,13 @@ "psr-4": { "Ilimic\\Classnames\\Tests\\": "tests/" } + }, + "scripts": { + "test": [ + "@test:phpunit", + "@test:phpstan" + ], + "test:phpstan": "phpstan", + "test:phpunit": "phpunit" } }