forked from davmixcool/php-sentiment-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.08 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.08 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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": "davmixcool@gmail.com",
"role": "Software Developer"
}
],
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"Sentiment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sentiment\\Tests\\": "tests/"
}
},
"require-dev": {
"rector/rector": "^1.0.2",
"phpstan/phpstan": "^1.10.60",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.51.0",
"phpstan/phpstan-deprecation-rules": "^1.1.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"analyse": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpstan analyse"
],
"analyse-baseline": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/phpstan analyse --generate-baseline --allow-empty-baseline "
],
"format-dry-run": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"format-fix": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/php-cs-fixer fix"
],
"rector": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/rector process --dry-run"
],
"rector-do": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/rector process"
]
}
}