From 22194ba4c1874ad4b9930ed51e8d4317b7c08134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 8 Jan 2021 09:26:00 +0100 Subject: [PATCH] Fix: Clean up composer.json --- composer.json | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/composer.json b/composer.json index 6223397..8dbf182 100644 --- a/composer.json +++ b/composer.json @@ -1,18 +1,20 @@ { - "repositories": [{ - "type": "composer", - "url": "https://packagist.org" - }], "name": "wildbit/swiftmailer-postmark", "description": "A Swiftmailer Transport for Postmark.", + "license": "MIT", + "authors": [ + { + "name": "Postmark", + "email": "support@postmarkapp.com" + } + ], "require": { - "swiftmailer/swiftmailer": "^6.0.0", - "guzzlehttp/guzzle": "^6.0|^7.0" + "guzzlehttp/guzzle": "^6.0 || ^7.0", + "swiftmailer/swiftmailer": "^6.0.0" }, "require-dev": { "phpunit/phpunit": "^6.0.0" }, - "license": "MIT", "autoload": { "psr-0": { "Postmark\\": "src/" @@ -24,13 +26,7 @@ "tests/" ] }, - "scripts" : { - "test" : "phpunit" - }, - "suggest": { - }, - "authors": [{ - "name": "Postmark", - "email": "support@postmarkapp.com" - }] + "scripts": { + "test": "phpunit" + } }