Skip to content

Commit

Permalink
Rename setting files to remove 'laravel'
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasSkywalker committed Jun 21, 2024
1 parent 482a92f commit b74c72d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/Providers/PackageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ public function boot(): void
}

$this->publishes([
__DIR__.'/../../config/qdrant-laravel.php' => config_path('qdrant-laravel.php'),
__DIR__.'/../../config/qdrant.php' => config_path('qdrant.php'),
]);
}

public function register(): void
{
$this->mergeConfigFrom(
__DIR__.'/../../config/qdrant-laravel.php', 'qdrant-laravel'
__DIR__.'/../../config/qdrant.php', 'qdrant'
);
}
}

0 comments on commit b74c72d

Please sign in to comment.