Skip to content

Commit

Permalink
update composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
prgayman committed May 11, 2022
1 parent 8f96bca commit b6c4aa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "prgayman/larafcm",
"description": "Laravel Firebase Cloud Messaging",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"prgayman",
"laravel",
Expand All @@ -21,8 +21,8 @@
],
"require": {
"php": "^7.2.5|^8.0",
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
"illuminate/notifications": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0",
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/notifications": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"guzzlehttp/guzzle": "^6.0",
"monolog/monolog": "^1.12|^2.0"
},
Expand All @@ -49,4 +49,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
4 changes: 2 additions & 2 deletions src/Providers/LaraFcmServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class LaraFcmServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../../config/larafcm.php' => config_path('larafcm.php'),
__DIR__ . '/../../config/larafcm.php' => config_path('larafcm.php'),
], 'config');


Expand All @@ -31,7 +31,7 @@ public function register()

if (!Str::contains($this->app->version(), 'Lumen')) {
$this->mergeConfigFrom(
__DIR__. '/../../config/larafcm.php',
__DIR__ . '/../../config/larafcm.php',
'larafcm'
);
}
Expand Down

0 comments on commit b6c4aa7

Please sign in to comment.