-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.2 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
{
"name": "softcreatr/php-mistral-ai-sdk",
"description": "A powerful and easy-to-use PHP SDK for the Mistral AI API, allowing seamless integration of advanced AI-powered features into your PHP projects.",
"license": "ISC",
"type": "library",
"version": "2.0.0",
"keywords": [
"mistral",
"ai",
"llama",
"replit",
"gpt",
"gpt-3",
"gpt-4",
"artificial-intelligence",
"machine-learning",
"natural-language-processing",
"nlp",
"php",
"sdk",
"api-wrapper"
],
"authors": [
{
"name": "Sascha Greuel",
"email": "hello@1-2.dev"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"guzzlehttp/guzzle": "^7",
"phpunit/phpunit": "^10"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SoftCreatR\\MistralAI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoftCreatR\\MistralAI\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcsf": "php-cs-fixer fix",
"test": "phpunit"
}
}