-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
26 lines (26 loc) · 1001 Bytes
/
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
{
"name": "malenki/math",
"type": "library",
"description": "Library to deal with some mathematical stuff. Implemented or partially implemented mathematical concepts are: Complex number, Matrix, Normal distribution, Random, Angle, Random Complex, Descriptive Statistics, Parametric tests (Anova, Dependant t-Test) and Non-Parametric tests (Wilcoxon Signed-rank test, Wilcoxon-Mann-Whitney test, Kruskal-Wallis).",
"keywords": ["math", "probability", "statistic", "t-test","Wilcoxon-Mann-Whitney", "Student", "rank", "parametric", "non parametric"],
"homepage": "https://github.com/malenkiki/math",
"license": "MIT",
"authors": [
{
"name": "Michel Petit",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"Malenki\\Math": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8"
}
}