forked from camspiers/statistical-classifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "camspiers/statistical-classifier",
"description": "A PHP implementation of Complement Naive Bayes and SVM statistical classifiers, including a structure for building other classifier, multiple data sources and multiple caching backends",
"keywords": ["classifier", "svm", "naive", "bayes"],
"homepage": "http://php-classifier.com/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cam Spiers",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/config": "*",
"symfony/options-resolver": "*"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"mikey179/vfsStream": "~1.2",
"maximebf/cachecache": "~1.0"
},
"suggest": {
"camspiers/porter-stemmer": "Using a stemmer can help with language based classification",
"maximebf/cachecache": "Using caching will help improve performance on large datasets"
},
"autoload": {
"psr-0": {
"Camspiers\\StatisticalClassifier": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev"
}
}
}