-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
38 lines (38 loc) · 852 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"authors" : [
{
"homepage" : "http://www.DrQue.net/",
"name" : "Andrew Que"
}
],
"autoload" : {
"psr-4" : {
"DrQue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DrQue\\PolynomialRegression\\Tests\\": "tests"
}
},
"description" : "Calculates and returns coefficients for polynomial regression.",
"homepage": "http://www.drque.net/Projects/PolynomialRegression/",
"name" : "dr-que/polynomial-regression",
"keywords" : [
"polynomial",
"polynomial regression",
"regression",
"math"
],
"license": "GPL-2.0-or-later",
"require" : {
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.4"
},
"type" : "library",
"_comment": [
"Think not that I am come to send peace on earth: I came not to send peace, but a sword. Matthew 10:34"
]
}