composer require typerej/line-notify dev-master --prefer-dist
use TyperEJ\LineNotify\Notify;
$notify = new Notify(CHANNEL_ID);
$url = $notify->generateSubscribeUrl($options);
use TyperEJ\LineNotify\Notify;
$notify = new Notify(CHANNEL_ID,CHANNEL_SECRET);
$token = $notify->requestToken($_GET('code'));
use TyperEJ\LineNotify\Notify;
use TyperEJ\LineNotify\Message;
$message = new Message('Notify Text');
Notify::sendMessage($token,$message);