From 191b50b8148703daf4c244c408ef3b2aa66abe12 Mon Sep 17 00:00:00 2001 From: aras Date: Mon, 6 Oct 2025 13:17:32 +0300 Subject: [PATCH] docs: remove emojis and auto_recovery config from README Clean up README formatting by removing emojis from feature list and deleting deprecated auto_recovery configuration section --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 257358d..e7d4cac 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ An extensive Laravel plugin system that provides automatic registration of route - **View Integration** - Seamless integration with Laravel views and Livewire Volt - ️ **Config Management** - Automatic configuration loading and merging - **Plugin Generator** - Artisan command to create new plugins with boilerplate code -- 📊 **Health Monitoring** - Real-time plugin health monitoring with metrics, alerts, and automatic recovery -- 🔍 **Performance Tracking** - Monitor memory usage, execution time, error rates, and database queries -- 🚨 **Alert System** - Multi-channel alerts (log, email, Slack) for plugin issues -- 🛠️ **Health Commands** - Artisan commands for health checks and error management +- **Health Monitoring** - Real-time plugin health monitoring with metrics, alerts, and automatic recovery +- **Performance Tracking** - Monitor memory usage, execution time, error rates, and database queries +- **Alert System** - Multi-channel alerts (log, email, Slack) for plugin issues +- **Health Commands** - Artisan commands for health checks and error management ## Installation @@ -77,12 +77,6 @@ return [ 'channel' => '#alerts', ], ], - - 'auto_recovery' => [ - 'enabled' => false, - 'max_attempts' => 3, - 'recovery_actions' => ['restart', 'clear_cache'], - ], ], ]; ```