-
Notifications
You must be signed in to change notification settings - Fork 170
Description
When running the php artisan vendor:publish command, the view, translation and migration files are copied every single time, not only the first time.
Copied Directory [\vendor\riari\laravel-forum\src\views] To [\resources\views\vendor\forum] Copied Directory [\vendor\riari\laravel-forum\src\translations] To [\resources\lang\vendor\forum] Copied Directory [\vendor\riari\laravel-forum\src\migrations] To [\database\migrations]
Also, after running composer update, warnings are thrown notifying the migration classes already exists in the vendor folder.
Warning: Ambiguous class resolution, "CreateForumTableCategories" was found in both "$baseDir . '/database/migrations/2014_05_19_151759_create_forum_table_categories.php" and D:\Dropbox\Website\BIB\v3\vendor\riari\laravel-forum\src\migrations\2014_05_19_151759_create_forum_table_categories.php", the first will be used.