composer require dmitry-udod/php-insight
use PHPInsight\Sentiment;
#....
$analyzer = new Sentiment();
$analyzer->categorise($string); #return text category, positive, negative or neutral
$scores = $analyzer->score($string);
#Returns text scores, for example
#(
# [neg] => 0.865
# [neu] => 0.108
# [pos] => 0.027
#)
Run
composer demo
Run
composer generate-dictionaries
Install and run phpunit in project dir