-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 921 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 921 Bytes
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" : "zeeml/machinelearning",
"require" : {
"php" : ">=7.0.0",
"zeeml/dataset" : "dev-master",
"zeeml/algorithms" : "dev-master"
},
"repositories" : [ {
"type" : "composer",
"url" : "https://packagist.org/"
} ],
"require-dev" : {
"phpunit/phpunit" : "6.0.8"
},
"autoload-dev" : {
"psr-4" : {
"Zeeml\\MachineLearning\\" : "src/",
"Zeeml\\MachineLearning\\Tests\\" : "tests/fixtures"
}
},
"autoload" : {
"psr-4" : {
"Zeeml\\MachineLearning\\" : "src/"
}
},
"authors" : [ {
"name" : "Olivier Lépine",
"email" : "olivier@lepine.fr"
}, {
"name" : "Adil El Kanabi",
"email" : "adil.kanabi@gmail.com"
} ],
"config" : {
"preferred-install" : "dist"
},
"minimum-stability" : "dev",
"prefer-stable" : true
}