-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
43 lines (43 loc) · 1.12 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
35
36
37
38
39
40
41
42
43
{
"name": "divineomega/eloquent-attribute-value-prediction",
"description": "Predict attribute values for your Laravel Eloquent models using machine learning!",
"type": "library",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@hall05.co.uk"
}
],
"require": {
"php": ">=7.1",
"laravel/framework": "^5.1||^6.0||^7.0||^8.0",
"rubix/ml": "0.2.*"
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0",
"calebporzio/sushi": "^2.1",
"divineomega/uxdm": "^4.0",
"orchestra/testbench": "^6.3"
},
"autoload": {
"psr-4": {
"DivineOmega\\EloquentAttributeValuePrediction\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\EloquentAttributeValuePrediction\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DivineOmega\\EloquentAttributeValuePrediction\\ServiceProvider"
]
}
},
"scripts": {
"test": "phpunit"
}
}