forked from RubixML/Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.8 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
85
86
87
88
89
{
"name": "rubix/server",
"type": "library",
"description": "Serve your Rubix ML models in production with scalable stand-alone model 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/guzzle": "^7.2",
"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": "0.12.*",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-phpunit": "0.12.*",
"phpunit/phpunit": "8.5.*"
},
"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
},
"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
}