File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 99 "email" : " alex@devaction.com.br"
1010 }
1111 ],
12- "version" : " v1.0.16 " ,
12+ "version" : " v1.0.17 " ,
1313 "require" : {
1414 "php" : " ^8.2|^8.3|^8.4" ,
1515 "illuminate/cache" : " ^12.2" ,
3333 "DevactionLabs\\ FilterablePackage\\ " : " src/"
3434 }
3535 },
36+ "extra" : {
37+ "laravel" : {
38+ "providers" : [
39+ " DevactionLabs\\ FilterablePackage\\ FilterableServiceProvider"
40+ ]
41+ }
42+ },
3643 "autoload-dev" : {
3744 "psr-4" : {
3845 "Tests\\ " : " tests/"
File renamed without changes.
Original file line number Diff line number Diff line change 11<?php
22
3- namespace DevactionLabs \FilterablePackage \ Providers ;
3+ namespace DevactionLabs \FilterablePackage ;
44
55use Illuminate \Support \ServiceProvider ;
66
@@ -9,12 +9,12 @@ class FilterableServiceProvider extends ServiceProvider
99 public function boot (): void
1010 {
1111 $ this ->publishes ([
12- __DIR__ . ' /.. /../config/filterable.php ' => config_path ('filterable.php ' ),
12+ __DIR__ . ' /../config/filterable.php ' => config_path ('filterable.php ' ),
1313 ], 'filterable-config ' );
1414 }
1515
1616 public function register (): void
1717 {
18- $ this ->mergeConfigFrom (__DIR__ . ' /.. /../config/filterable.php ' , 'filterable ' );
18+ $ this ->mergeConfigFrom (__DIR__ . ' /../config/filterable.php ' , 'filterable ' );
1919 }
2020}
You can’t perform that action at this time.
0 commit comments