Update social service
continuous-integration/drone/push Build is failing Details

This commit is contained in:
philipp lang 2025-12-18 01:57:21 +01:00
parent 918b444cb9
commit 59e611286d
3 changed files with 3 additions and 4 deletions

View File

@ -131,7 +131,7 @@ class Plugin extends PluginBase
}
public function registerSchedule($schedule) {
$schedule->command('social:sync')->hourly();
$schedule->command('social:sync')->everyFiveMinutes();
$schedule->command('social:refresh')->monthly();
}

View File

@ -5,7 +5,7 @@ namespace Zoomyboy\Social\Classes;
use Event;
use Generator;
use Illuminate\Support\Collection;
use MediaLibrary;
use System\Classes\MediaLibrary;
use Zoomyboy\Social\Exceptions\SocialException;
use Zoomyboy\Social\Models\Page;
use Zoomyboy\Social\Models\Setting;

View File

@ -1,7 +1,6 @@
{
"name": "zoomyboy/social",
"require": {
"guzzlehttp/guzzle": "^7.3"
},
"authors": [
{
@ -11,7 +10,7 @@
],
"autoload": {
"psr-4": {
"Aweos\\Social\\Exceptions\\": "./exceptions"
"Zoomyboy\\Social\\Exceptions\\": "./exceptions"
}
}
}