Skip to content

Laravel 6 support added #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Les's create a notification using artisan commend:
php artisan make:notification FirebaseNotification
```

Now you can use `firebase` channel in your `vie()` mothod.
Now you can use `firebase` channel in your `via()` method.

```php
public function via($notifiable)
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
],
"license": "MIT",
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.*",
"guzzlehttp/guzzle": "~6.0"
"php": ">=7.1",
"illuminate/support": "5.* | ^6.0",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
Expand Down