Skip to content

Commit

Permalink
Fix: Clean up composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jan 8, 2021
1 parent f62fd0c commit 22194ba
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
}
],
"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/"
Expand All @@ -24,13 +26,7 @@
"tests/"
]
},
"scripts" : {
"test" : "phpunit"
},
"suggest": {
},
"authors": [{
"name": "Postmark",
"email": "[email protected]"
}]
"scripts": {
"test": "phpunit"
}
}

0 comments on commit 22194ba

Please sign in to comment.