From d8f362ea5248ddaa318ccf8520380de4171dbaea Mon Sep 17 00:00:00 2001 From: Fuwasegu <52437973+fuwasegu@users.noreply.github.com> Date: Wed, 15 Mar 2023 09:42:38 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix:=20require=20=E3=81=AB?= =?UTF-8?q?=E3=81=82=E3=81=A3=E3=81=9F=E3=82=84=E3=81=A4=E3=82=92=E4=B8=80?= =?UTF-8?q?=E9=83=A8=20dev=20=E3=81=B8=20(#1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + composer.json | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 6bf94bf..8a8b30b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .idea vendor .php-cs-fixer.cache +.phpunit.result.cache composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json index 675b2f4..8c51240 100644 --- a/composer.json +++ b/composer.json @@ -12,9 +12,6 @@ "keywords": ["php", "image", "base64"], "require": { "php": "^8.1", - "phpunit/phpunit": "^9.5", - "phpstan/phpstan": "^1.9", - "friendsofphp/php-cs-fixer": "^3.13", "ext-fileinfo": "*" }, "autoload": { @@ -37,6 +34,8 @@ "minimum-stability": "dev", "prefer-stable": true, "require-dev": { - "yumemi-inc/php-cs-fixer-config": "^8.1" + "yumemi-inc/php-cs-fixer-config": "^8.1", + "phpunit/phpunit": "^9.5", + "phpstan/phpstan": "^1.9" } }