forked from markrogoyski/math-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 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
34
{
"name": "markrogoyski/math-php",
"type": "library",
"description": "Math Library for PHP. Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra",
"keywords": ["math", "mathematics", "probability", "combinatorics", "statistics", "distributions", "regressions", "linear algebra", "matrix", "algebra", "numerical analysis"],
"homepage": "https://github.com/markrogoyski/math-php/",
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": { "MathPHP\\": "src/" }
},
"authors": [
{
"name": "Mark Rogoyski",
"email": "[email protected]",
"homepage": "https://github.com/markrogoyski",
"role": "Developer"
},
{
"name": "Kevin Nowaczyk",
"role": "Contributor"
},
{
"name": "Jakob Sandberg",
"role": "Contributor"
}
],
"license": "MIT"
}