-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ahmedash95/sentimento",
"description": "A laravel package that provides sentiment analysis capabilities using OpenAI's GPT to easily analyze text-based data and gain insight into the underlying sentiment.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Ahmedash95\\Sentimento\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Ahmed Ammar",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "^9.46.0|^10.2.0",
"spatie/laravel-package-tools": "^1.14",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"pestphp/pest": "^1.22",
"laravel/pint": "^1.6",
"orchestra/testbench": "^8.0"
},
"extra": {
"laravel": {
"providers": [
"Ahmedash95\\Sentimento\\SentimentoServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "./vendor/bin/pest",
"pint": "./vendor/bin/pint"
}
}