This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
57 lines (57 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
{
"name": "sastrawi/tokenizer",
"type": "library",
"description": "PHP library that allows you to tokenize Bahasa Indonesia.",
"keywords": [
"tokenizer",
"tokenization",
"text preprocessing",
"indonesian",
"bahasa",
"indonesia",
"nlp",
"natural language processing"
],
"homepage": "https://github.com/sastrawi/tokenizer",
"authors": [
{
"name": "Andy Librian",
"email": "andylibrian@gmail.com",
"homepage": "http://andylibrian.pro",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.3",
"sastrawi/string-span": "~1",
"sastrawi/trka": "0.*",
"symfony/console": "~2.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "~1",
"behat/behat": "~3",
"phpunit/phpunit": "~4"
},
"autoload": {
"psr-0": {
"Sastrawi\\Tokenizer": "src"
}
},
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"support": {
"issues": "https://github.com/sastrawi/tokenizer/issues",
"source": "https://github.com/sastrawi/tokenizer"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"suggest": {
"sastrawi/sastrawi": "For stemming Bahasa Indonesia",
"sastrawi/sentence-detector": "For splitting sentence in Bahasa Indonesia"
},
"bin": ["bin/sastrawi-tokenize"]
}