koramit / simed-portal-api
Laravel package for SiMED Portal API
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/koramit/simed-portal-api
Requires
- php: ^8.3.0
- illuminate/http: ^12.39
- illuminate/support: ^11.43|^12.0
Requires (Dev)
- laravel/pint: ^1.24
README
Installation
composer require koramit/laravel-line-bot
php artisan vendor:publish --provider="Koramit\LaravelLINEBot\LINEBotServiceProvider"
php artisan migrate
# .env required configs
LINE_BOT_BASIC_ID=
LINE_BOT_CHANNEL_ID=
LINE_BOT_CHANNEL_SECRET=
LINE_BOT_CHANNEL_ACCESS_TOKEN=
# .env optional configs
LINE_BOT_VERIFY_CODE_LENGTH=4
LINE_BOT_PUSH_ENDPOINT=https://api.line.me/v2/bot/message/push
LINE_BOT_REPLY_ENDPOINT=https://api.line.me/v2/bot/message/reply
LINE_BOT_LOADING_ANIMATION_ENDPOINT=https://api.line.me/v2/bot/chat/loading/start
LINE_BOT_GET_USER_PROFILE_ENDPOINT=https://api.line.me/v2/bot/profile/
LINE_VALIDATE_MESSAGE_OBJECT_ENDPOINT=https://api.line.me/v2/bot/message/validate/push
LINE_API_TIMEOUT_SECONDS=10
LINE_API_RETRY_TIMES=3
LINE_API_RETRY_DELAY_MILLISECONDS=200