-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 1.07 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
{
"name": "yooper/php-text-analysis",
"description": "PHP Text Analysis is a library for performing Information Retrieval (IR) and Natural Language Processing (NLP) tasks using the PHP language",
"keywords": ["nlp","ir","text analysis","natural language processing", "text classification"],
"license": "MIT",
"authors": [
{
"name": "yooper",
"email" : "[email protected]"
}
],
"bin": ["textconsole","interactive"],
"autoload": {
"psr-4": {
"TextAnalysis\\": "src/"
},
"files": ["src/helpers/storage.php", "src/helpers/print.php", "src/helpers/simplified.php", "src/helpers/helpers.php", "src/helpers/interactive_help.php"]
},
"autoload-dev": {
"files": ["tests/TestBaseCase.php"]
},
"require" : {
"php": ">=7.4",
"yooper/stop-words": "~1",
"symfony/console": ">= 4.4",
"wamania/php-stemmer": "^1.0 || ^2.0 || ^3.0",
"yooper/nicknames": "~1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mockery/mockery" : "^1"
}
}