diff --git a/composer.json b/composer.json index e842091..0afeec5 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "laravel/slack-notification-channel": "^2.0", "laravel/tinker": "^1.0", "eveseat/eveapi": "^4.0", - "eveseat/services": "^4.0", + "eveseat/services": "^4.1", "symfony/yaml": "^4.0", "yajra/laravel-datatables-oracle": "~9" }, diff --git a/src/Config/notifications.config.php b/src/Config/notifications.config.php deleted file mode 100644 index 6152a61..0000000 --- a/src/Config/notifications.config.php +++ /dev/null @@ -1,26 +0,0 @@ - '4.1.0', -]; diff --git a/src/NotificationsServiceProvider.php b/src/NotificationsServiceProvider.php index 0ac3b2c..e0a7741 100644 --- a/src/NotificationsServiceProvider.php +++ b/src/NotificationsServiceProvider.php @@ -118,11 +118,6 @@ private function add_events() */ public function register() { - - // Package specific configuration - $this->mergeConfigFrom( - __DIR__ . '/Config/notifications.config.php', 'notifications.config'); - // Add new permissions $this->registerPermissions(__DIR__ . '/Config/Permissions/notifications.php', 'notifications'); @@ -180,14 +175,4 @@ public function getPackagistVendorName(): string { return 'eveseat'; } - - /** - * Return the plugin installed version. - * - * @return string - */ - public function getVersion(): string - { - return config('notifications.config.version'); - } }