-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (38 loc) · 907 Bytes
/
composer.json
File metadata and controls
executable file
·38 lines (38 loc) · 907 Bytes
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
{
"name": "smartcat/smartcat-api",
"description": "PHP client for SmartCAT API https://smartcat.ai/api/methods/",
"version": "3.0.0",
"type": "library",
"keywords": [
"php",
"smartcat",
"api"
],
"homepage": "https://github.com/smartcatai/SmartCAT-API",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/smartcatai/SmartCAT-API/issues"
},
"require": {
"php": "^7.4 | ^8.0",
"guzzlehttp/psr7": "^2.0",
"symfony/serializer": "^2.0 || ^3.0 || ^4.0 || ^5.0",
"nesbot/carbon": "^2.42",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8",
"symfony/options-resolver": "^5.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Andrey Rybnikov",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SmartCat\\Client\\": "src/SmartCAT/API"
}
}
}