-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1.03 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
{
"name": "jdecool/ollama-client",
"description": "Ollama PHP API client",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jérémy DECOOL",
"email": "contact@jdecool.fr"
}
],
"require": {
"php": ">=8.1",
"psr/log": "^3.0",
"symfony/http-client": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.41",
"friendsofphp/php-cs-fixer": "^3.47",
"nyholm/psr7": "^1.8",
"php-http/guzzle7-adapter": "^1.0",
"php-http/mock-client": "^1.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"JDecool\\OllamaClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JDecool\\OllamaClient\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true
}
}
}