bogiesoft / laravel-line-sdk
LINE SDK for Laravel
Installs: 41
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bogiesoft/laravel-line-sdk
Requires
- php: ^8.0
 - ext-json: *
 - illuminate/support: *
 - laravel/socialite: ^5.0
 - linecorp/line-bot-sdk: *
 
Requires (Dev)
- orchestra/testbench: ^7.0
 - phpunit/phpunit: ^9.5
 
This package is auto-updated.
Last update: 2025-10-29 03:17:49 UTC
README
Features
- Working with Laravel Event System. Including Webhook routing and controller.
 - Extensible Bot Client.
 - Working with Laravel Notification System(LINE Notify)
 - Including Socialite drivers(LINE Login, LINE Notify)
 
Requirements
- PHP >= 8.0
 - Laravel >= 9.0
 
Versioning
- Basic : semver
 - Drop old PHP or Laravel version : 
+0.1. composer should handle it well. - Support only latest major version (
masterbranch), but you can PR to old branches. 
Installation
composer require bogiesoft/laravel-line-sdk
Configuration
.env
Set up in LINE Developers console. https://developers.line.biz/
Create two channels Messaging API and LINE Login.
- Messaging API : Get 
Channel access token (long-lived)andChannel secret. SetWebhook URL - LINE Login : Get 
Channel IDandChannel secret. SetCallback URL 
LINE_BOT_CHANNEL_TOKEN=
LINE_BOT_CHANNEL_SECRET=
LINE_LOGIN_CLIENT_ID=
LINE_LOGIN_CLIENT_SECRET=
LINE_LOGIN_REDIRECT=
LINE_NOTIFY_CLIENT_ID=
LINE_NOTIFY_CLIENT_SECRET=
LINE_NOTIFY_REDIRECT=
LINE_NOTIFY_PERSONAL_ACCESS_TOKEN=
Publishing(Optional)
php artisan vendor:publish --tag=line-config
Short Facade(Optional)
Recent Laravel uses a full namespace.
use Bogiesoft\Line\Facades\Bot; Bot::replyText();
If you want to use the short Facade, you can add it manually in config/app.php.
'aliases' => [ 'LINE' => Bogiesoft\Line\Facades\Bot::class, ],
use LINE; LINE::replyText();
Quick Start
Prepare
- Create 
Messaging APIchannel in LINE Developers console. - Get 
Channel access token (long-lived),Channel secretand QR code. - A web server that can receive webhooks from LINE. Not possible on a normal local server.
 
Create new Laravel project
composer create-project --prefer-dist laravel/laravel line-bot "8.*"
cd ./line-bot
composer require bogiesoft/laravel-line-sdk
Edit .env
LINE_BOT_CHANNEL_TOKEN=
LINE_BOT_CHANNEL_SECRET=
Add shouldDiscoverEvents() to app/Providers/EventServiceProvider
/** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return true; }
Publishing default Listeners
php artisan vendor:publish --tag=line-listeners-message
Deploy to web server
- Set 
Webhook URLin LINE Developers console.https://example.com/line/webhook - Verify Webhook URL.
 
Add bot as a friend.
- Using QR code.
 
Send test message
Bot returns same message.
Documents
Demo
LICENSE
MIT