-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.38 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
{
"name": "talismanfr/gigachat-php-sdk",
"description": "GigaChat API SDK for PHP projects",
"keywords": [
"gigachat",
"gigachat php",
"gigachat php api",
"gigachat sdk",
"gigachat sdk php",
"gigachat api client"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Talismanfr\\GigaChat\\": "src/"
}
},
"authors": [
{
"name": "edvardpotter",
"email": "eduard1997@bk.ru"
},
{
"name": "talismanfr",
"email": "anat-gor@ya.ru"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-intl": "*",
"guzzlehttp/guzzle": "^7.9.0",
"ramsey/uuid": "^4.7",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.0.3",
"roave/infection-static-analysis-plugin": "^1.34",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^5.16",
"symfony/event-dispatcher": "^7.1",
"ext-fileinfo": "*"
},
"autoload-dev": {
"psr-4": {
"Talismanfr\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}