Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
- Laravel 6 compatibility
- Added BaumServiceProvider for autodiscover
  • Loading branch information
hebinet authored Sep 5, 2019
1 parent 9290bed commit 5c91c39
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
],
"require": {
"php": ">=5.4.0",
"illuminate/console": "5.*",
"illuminate/database": "5.*",
"illuminate/events": "5.*",
"illuminate/filesystem": "5.*",
"illuminate/support": "5.*"
"illuminate/console": "5.*|^6.0",
"illuminate/database": "5.*|^6.0",
"illuminate/events": "5.*|^6.0",
"illuminate/filesystem": "5.*|^6.0",
"illuminate/support": "5.*|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
Expand All @@ -28,5 +28,12 @@
"psr-0": {
"Baum": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Baum\\Providers\\BaumServiceProvider"
]
}
}
}

0 comments on commit 5c91c39

Please sign in to comment.