PHP Wrapper to send line notify notification, (*1)
Installation: composer require renlight10/line-notify, (*2)
usage :
``` php
$line = new \renlight10\LineNotify\LineNotify("token");
$line->SETmessage("awesome!");
echo $line->sendIt();, (*3)
you can `SET` more property for example
``` php
$line->SETmessage("awesome!")->SETstickerPackageId(1)->SETstickerId(5);
see documentation., (*4)
NOTE : currently direct image upload or imageFile not supported ~, (*5)
example response:
json
{"header":{"Limit":1000,"ImageLimit":50,"Remaining":999,"ImageRemaining":50,"Reset":1483555725},"body":{"status":200,"message":"ok"}}, (*6)