-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
122 lines (122 loc) · 4.1 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "modelflow-ai/symfony-bundle",
"description": "An integration of modelflow-ai via a bundle into the Symfony Framework.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"ai",
"openai",
"mistral",
"ollama",
"anthropic",
"fireworksai",
"gpt4",
"gpt3.5",
"llama2",
"llama3.1",
"mistral-large"
],
"autoload": {
"psr-4": {
"ModelflowAi\\Integration\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ModelflowAi\\Integration\\Symfony\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Johannes Wachter",
"email": "johannes@sulu.io"
}
],
"require": {
"php": "^8.2",
"symfony/console": "^6.2 | ^7.0",
"symfony/dependency-injection": "^6.2 | ^7.0",
"symfony/http-kernel": "^6.2 | ^7.0",
"symfony/config": "^6.2 | ^7.0",
"symfony/framework-bundle": "^6.2 | ^7.0"
},
"require-dev": {
"modelflow-ai/anthropic-adapter": "^0.2",
"modelflow-ai/chat": "^0.2",
"modelflow-ai/completion": "^0.2",
"modelflow-ai/embeddings": "^0.2",
"modelflow-ai/experts": "^0.2",
"modelflow-ai/fireworksai-adapter": "^0.2",
"modelflow-ai/image": "^0.2",
"modelflow-ai/mistral-adapter": "^0.2",
"modelflow-ai/ollama-adapter": "^0.2",
"modelflow-ai/openai-adapter": "^0.2",
"modelflow-ai/prompt-template": "^0.2",
"php-cs-fixer/shim": "^3.15",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10, <1.10.55",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.18.1",
"symfony/yaml": "^6.2 | ^7.0",
"symfony/filesystem": "^6.2 | ^7.0",
"asapo/remove-vendor-plugin": "^0.1"
},
"suggest": {
"modelflow-ai/chat": "Library to handle chat requests.",
"modelflow-ai/completion": "Library to handle completion requests.",
"modelflow-ai/embeddings": "Library to manage embeddings.",
"modelflow-ai/experts": "Library that provide experts.",
"modelflow-ai/fireworksai-adapter": "Adapter to interact with fireworksai models.",
"modelflow-ai/image": "Library to generate and manipulate images.",
"modelflow-ai/anthropic-adapter": "Adapter to interact with anthropic models.",
"modelflow-ai/mistral-adapter": "Adapter to interact with mistral models.",
"modelflow-ai/ollama-adapter": "Adapter to interact with ollama models.",
"modelflow-ai/openai-adapter": "Adapter to interact with openai models."
},
"scripts": {
"test-with-coverage": "@test --coverage-php var/reports/coverage.cov --coverage-cobertura=var/cobertura-coverage.xml --coverage-html var/reports/html --log-junit var/reports/junit.xml",
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpstan": "@php vendor/bin/phpstan analyze",
"lint-rector": "@php vendor/bin/rector process --dry-run",
"lint-php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"lint": [
"@phpstan",
"@lint-php-cs",
"@lint-rector",
"@lint-composer"
],
"lint-composer": "@composer validate --strict",
"rector": "@php vendor/bin/rector process",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"fix": [
"@rector",
"@php-cs-fix"
]
},
"repositories": [
{
"type": "path",
"url": "./../../packages/*",
"options": {
"symlink": false
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"asapo/remove-vendor-plugin": true
}
},
"extra": {
"remove-folders": [
"modelflow-ai/*/vendor"
]
}
}