-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
32 lines (32 loc) · 980 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
{
"name": "rubix/iris",
"type": "project",
"description": "An introduction to machine learning in Rubix ML using the famous Iris dataset and the K Nearest Neighbors classifier.",
"homepage": "https://github.com/RubixML/Iris",
"license": "MIT",
"keywords": [
"classification", "cross validation", "dataset", "data science", "example project",
"iris flower", "k nearest neighbors", "knn", "machine learning", "ml", "php", "php ml",
"rubix ml", "rubixml", "tutorial"
],
"authors": [
{
"name": "Andrew DalPino",
"homepage": "https://github.com/andrewdalpino",
"role": "Lead Engineer"
}
],
"require": {
"php": ">=7.4",
"rubix/ml": "^2.0"
},
"scripts": {
"train": "@php train.php"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}