-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.85 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.85 KB
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
85
86
87
88
89
90
91
{
"name": "rubix/server",
"type": "library",
"description": "Deploy your Rubix ML models to production with scalable stand-alone inference servers.",
"homepage": "https://github.com/RubixML/Server",
"license": "MIT",
"readme": "README.md",
"keywords": [
"ai", "api", "cloud", "distributed", "graphql", "graph ql", "inference", "inference engine",
"inference server", "infrastructure", "json api", "machine learning", "microservice", "ml",
"ml infrastructure", "ml server", "model server", "model deployment", "php", "php ai",
"php machine learning", "php ml", "prediction", "rest api", "rest server", "rest client",
"rubix", "rubix ml", "rubixml", "server"
],
"authors": [
{
"name": "Andrew DalPino",
"role": "Project Lead",
"homepage": "https://github.com/andrewdalpino",
"email": "support@andrewdalpino.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/RubixML/Server/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/psr7": "^1.7",
"psr/container": "^1.1",
"psr/http-message": "^1.0",
"psr/log": "^1.1",
"react/http": "^1.1",
"rubix/ml": "^2.0",
"symfony/polyfill-php80": "^1.17",
"webonyx/graphql-php": "^14.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Rubix\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rubix\\Server\\Tests\\": "tests/"
}
},
"scripts": {
"build": [
"@composer install",
"@analyze",
"@test",
"@check"
],
"analyze": "phpstan analyse -c phpstan.neon",
"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,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/andrewdalpino"
}
],
"support": {
"issues": "https://github.com/RubixML/Server/issues",
"source": "https://github.com/RubixML/Server",
"chat": "https://t.me/RubixML",
"email": "support@andrewdalpino.com"
},
"minimum-stability": "dev",
"prefer-stable": true
}