-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
88 lines (88 loc) · 2.69 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
{
"name": "rubix/client",
"type": "library",
"description": "The PHP client SDK for Rubix ML Server.",
"homepage": "https://github.com/RubixML/Client",
"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": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/RubixML/Client/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/psr7": "^1.7",
"psr/http-message": "^1.0",
"rubix/ml": "^2.0",
"symfony/polyfill-php80": "^1.17"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.18.*",
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Rubix\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rubix\\Client\\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.dist -v --dry-run --using-cache=no"
],
"fix": "php-cs-fixer fix --config=.php_cs.dist",
"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": "[email protected]"
},
"minimum-stability": "dev",
"prefer-stable": true
}