-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
84 lines (84 loc) · 2.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rubix/extras",
"type": "library",
"description": "Experimental features for the Rubix ML library.",
"homepage": "https://rubixml.com",
"license": "MIT",
"keywords": [
"php", "machine learning", "rubix", "ml", "extras", "neural network", "deep learning",
"analytics", "data mining", "php-ml", "php ml", "php ai", "artificial intelligence",
"ai", "rubixml", "rubix ml"
],
"authors": [
{
"name": "Andrew DalPino",
"homepage": "https://github.com/andrewdalpino",
"email": "support@andrewdalpino.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/RubixML/Extras/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"rubix/ml": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpbench/phpbench": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Rubix\\ML\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rubix\\ML\\Tests\\": "tests/",
"Rubix\\ML\\Benchmarks\\": "benchmarks/"
}
},
"scripts": {
"build": [
"@composer install",
"@analyze",
"@test",
"@check"
],
"analyze": "phpstan analyse -c phpstan.neon",
"benchmark": "phpbench run --report=env --report=aggregate",
"check": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --using-cache=no"
],
"fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"test": "phpunit"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 3000,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/RubixML"
}
],
"support": {
"issues": "https://github.com/RubixML/Extras/issues",
"source": "https://github.com/RubixML/Extras",
"chat": "https://t.me/RubixML",
"email": "support@andrewdalpino.com"
},
"minimum-stability": "dev",
"prefer-stable": true
}