Skip to content

Commit

Permalink
🐛 Fix load plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
juzaweb committed May 3, 2022
1 parent 52c2214 commit de99469
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"homepage": "https://juzaweb.com",
"require": {
"php": "^7.4|^8.0"
"php": "^8.0|^8.1"
},
"require-dev": {
"laravel/laravel": "^6.0 | ^7.0 | ^8.0",
Expand All @@ -26,7 +26,8 @@
"juzaweb": {
"name": "Notification",
"domain": "juno",
"cms_min": "1.0.9"
"cms_min": "3.0",
"version": "1.0.1"
}
}
}
}
6 changes: 3 additions & 3 deletions src/Commands/SendNotify.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

use Illuminate\Console\Command;
use Juzaweb\Backend\Models\ManualNotification;
use Juzaweb\Backend\SendNotification;
use Juzaweb\CMS\Support\SendNotification;

class SendNotify extends Command
{
protected $signature = 'notify:send';
protected $limit = 5;

protected int $limit = 5;

public function handle()
{
Expand Down

0 comments on commit de99469

Please sign in to comment.