ygthor / laravel-error-notify
您的 Laravel 包描述
1.0.4
2023-09-11 09:16 UTC
Requires
- php: *
- illuminate/support: *
- symfony/mailer: *
This package is auto-updated.
Last update: 2024-09-11 11:30:22 UTC
README
此包用于通过电子邮件将错误日志发送到开发者账户。
composer require ygthor/laravel-error-notify
需要创建以下变量在 .env 文件中以使用 IP_STACK_API_KEY,需要使用此 URL 发起请求 https://ipstack.com/,ipstack 允许追踪访客 IP 地址。
IP_STACK_API_KEY=xxxxxxx
DEBUGGER_EMAIL=developer@company.com
DEBUGGER_MAIL_HOST=smtp.gmail.com
DEBUGGER_MAIL_PORT=587
DEBUGGER_MAIL_USERNAME=xxxx@gmail.com
DEBUGGER_MAIL_PASSWORD=xxxxxx
DEBUGGER_MAIL_ENCRYPTION=tls
使用此命令发布配置
php artisan vendor:publish --tag=config --provider="YGThor\LaravelErrorNotify\LaravelErrorNotifyServiceProvider"