Skip to content

📊 PHP simple sentiment analysis library.

License

Notifications You must be signed in to change notification settings

ill-yes/sentiment-analysis

 
 

Repository files navigation

Sentiment Analysis

PHP Sentiment analysis library for classifying text into positive, negative, or neutral.

Installation

To install this library using Composer, run the following command inside your project directory:

composer require risan/sentiment-analysis

Basic Usage

<?php
// Include composer autoloader file.
require __DIR__ . '/vendor/autoload.php';

// Create a new instance of analyzer with default configuration.
$analyzer = SentimentAnalysis\Analyzer::withDefaultConfig();

// Analyze the text.
$result = $analyzer->analyze('This PHP package is awesome');

// Get and print the category.
echo $result->category();

About

📊 PHP simple sentiment analysis library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%