From 2e5e91b3af63609aa26c6fbd49915b74527b08db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=A9rub=C3=A9?= Date: Thu, 1 Nov 2018 02:01:34 -0600 Subject: [PATCH] remove unused dependency php-http/message-factory --- composer.json | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 0494d8c..e3cfc80 100644 --- a/composer.json +++ b/composer.json @@ -28,8 +28,7 @@ "ext-SimpleXML": "*", "php": "^7.1", "psr/http-factory": "^1.0", - "psr/http-message": "^1.0", - "php-http/message-factory": "^1.0" + "psr/http-message": "^1.0" }, "require-dev": { "nyholm/psr7": "^1.0", @@ -40,7 +39,7 @@ "php-http/psr7-integration-tests": "dev-master" }, "provide": { - "php-http/message-factory": "^1.0" + "psr/http-factory": "^1.0" }, "autoload": { "psr-4": { @@ -53,13 +52,13 @@ } }, "scripts": { - "test": [ - "@phpunit", - "@phpcs", - "@phpstan" - ], - "phpunit": "php vendor/bin/phpunit --process-isolation", - "phpcs": "php vendor/bin/phpcs", - "phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse src tests" + "test": [ + "@phpunit", + "@phpcs", + "@phpstan" + ], + "phpunit": "php vendor/bin/phpunit --process-isolation", + "phpcs": "php vendor/bin/phpcs", + "phpstan": "php -d memory_limit=-1 vendor/bin/phpstan analyse src tests" } }