-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
35 lines (35 loc) · 1.08 KB
/
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
29
30
31
32
33
34
35
{
"name": "antoineaugusti/laravel-sentiment-analysis",
"description": "A Laravel wrapper that performs sentiment analysis over an English sentence",
"keywords": ["laravel", "framework", "sentiment analysis", "sentiment", "analysis", "Augusti", "Antoine Augusti", "AntoineAugusti"],
"license": "Apache-2.0",
"authors": [
{
"name": "Antoine Augusti",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": ">=6",
"jwhennessey/phpinsight": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Antoineaugusti\\LaravelSentimentAnalysis\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Antoineaugusti\\LaravelSentimentAnalysis\\LaravelSentimentAnalysisServiceProvider"
],
"aliases": {
"SentimentAnalysis": "Antoineaugusti\\LaravelSentimentAnalysis\\Facades\\SentimentAnalysis"
}
}
}
}