-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
28 lines (28 loc) · 877 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "davmixcool/php-sentiment-analyzer",
"type": "library",
"description": "PHP Sentiment Analyzer is a lexicon and rule-based sentiment analysis tool that is used to understand sentiments in a sentence using VADER (Valence Aware Dictionary and sentiment Reasoner).",
"keywords": ["NLP","Sentiment Analyzer","Deep Learning","Machine Learning","AI","Social","PHP"],
"homepage": "https://github.com/davmixcool/php-sentiment-analyzer",
"license": "MIT",
"authors": [
{
"name": "David Oti",
"email": "[email protected]",
"role": "Software Developer"
}
],
"require": {
"php": ">=5.5.9"
},
"autoload": {
"psr-4": {
"Sentiment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sentiment\\Tests\\": "tests/"
}
}
}