Skip to content

Commit

Permalink
Merge pull request #5 from jayjfletcher/patch-1
Browse files Browse the repository at this point in the history
Fixed support for Laravel Package Discovery
  • Loading branch information
ConsoleTVs authored Oct 20, 2017
2 parents b1df653 + 508ffb2 commit 4a103ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Classes/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ public function json()
]
],
'extra' => [
'providers' => [
$this->namespace . '\\' . ucfirst(explode('/', $this->name)[1]) . 'ServiceProvider'
'laravel' =>[
'providers' => [
$this->namespace . '\\' . ucfirst(explode('/', $this->name)[1]) . 'ServiceProvider'
]
]
],
'minimum-stability' => "dev",
Expand Down

0 comments on commit 4a103ae

Please sign in to comment.