Skip to content

Commit 51fdc3f

Browse files
committed
- Update name slug
1 parent 3d7eb97 commit 51fdc3f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "rappasoft/livewire-tables",
3-
"description": "Datatables for Laravel Livewire",
2+
"name": "rappasoft/laravel-livewire-tables",
3+
"description": "Dynamic table component for Laravel Livewire",
44
"keywords": [
55
"rappasoft",
66
"livewire",
77
"datatables",
88
"tables",
99
"laravel"
1010
],
11-
"homepage": "https://github.com/rappasoft/livewire-tables",
11+
"homepage": "https://github.com/rappasoft/laravel-livewire-tables",
1212
"license": "MIT",
1313
"type": "library",
1414
"authors": [
File renamed without changes.

src/LivewireTablesServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function boot()
1717
{
1818
if ($this->app->runningInConsole()) {
1919
$this->publishes([
20-
__DIR__.'/../config/livewire-tables.php' => config_path('livewire-tables.php'),
20+
__DIR__.'/../config/laravel-livewire-tables.php' => config_path('laravel-livewire-tables.php'),
2121
], 'config');
2222
}
2323

@@ -30,6 +30,6 @@ public function boot()
3030
public function register()
3131
{
3232
// Register the config file
33-
$this->mergeConfigFrom(__DIR__.'/../config/livewire-tables.php', 'livewire-tables');
33+
$this->mergeConfigFrom(__DIR__.'/../config/laravel-livewire-tables.php', 'laravel-livewire-tables');
3434
}
3535
}

0 commit comments

Comments
 (0)