Skip to content

Commit cda8074

Browse files
committed
fix: package autoload
1 parent 3fd77ef commit cda8074

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class AccountApproved extends Notification
6060
return [TouchSmsChannel::class];
6161
}
6262

63-
public function toSmsbroadcast($notifiable)
63+
public function toTouchsms($notifiable)
6464
{
6565
return (new TouchSmsMessage)
6666
->content("Task #{$notifiable->id} is complete!");

composer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@
3535
"test": "phpunit",
3636
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
3737
},
38+
"extra": {
39+
"laravel": {
40+
"providers": [
41+
"NotificationChannels\\TouchSms\\TouchSmsChannel"
42+
]
43+
}
44+
},
3845
"config": {
3946
"sort-packages": true
4047
}

0 commit comments

Comments
 (0)