rtconner / laravel-tagging

Tag support for Laravel Eloquent models - Taggable Trait
MIT License
882 stars 168 forks source link

Unable to publish config/migrations. #43

Closed kevinruscoe closed 9 years ago

kevinruscoe commented 9 years ago

The original path __DIR__.'/../../../config/tagging.php' => config_path('tagging.php'), seems to be wrong. I had to change this in my basic setup to _DIR__.'/../config/tagging.php' => config_path('tagging.php'),.

rtconner commented 9 years ago

Ah I think you are right. This is a bug caused by the move to PSR4. Thanks will fix asap.

rtconner commented 9 years ago

Ok fixed in v 1.0.6

kevinruscoe commented 9 years ago

Thanks.