Skip to content

Commit

Permalink
Normalize composer.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Jul 31, 2019
1 parent 1bf3d5f commit 8eaf629
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "mvdnbrk/laravel-postmark-webhooks",
"type": "library",
"description": "Handle Postmark webhooks in a Laravel application.",
"keywords": [
"mvdnbrk",
Expand All @@ -21,15 +20,28 @@
],
"require": {
"php": "^7.1",
"illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0"
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0"
},
"require-dev": {
"mockery/mockery": "^1.1",
"nunomaduro/collision": "^3.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "^7.5|^8.1",
"orchestra/testbench": "~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0",
"phpunit/phpunit": "^7.5 || ^8.1",
"scrutinizer/ocular": "^1.5"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Mvdnbrk\\PostmarkWebhooks\\PostmarkWebhooksServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Mvdnbrk\\PostmarkWebhooks\\": "src"
Expand All @@ -42,18 +54,5 @@
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Mvdnbrk\\PostmarkWebhooks\\PostmarkWebhooksServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}

0 comments on commit 8eaf629

Please sign in to comment.