-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.13 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"require-dev": {
"phpunit/phpunit": "^12",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.1"
},
"require": {
"php": ">=8.3",
"deeplcom/deepl-php": "^1.18",
"defuse/php-encryption": "^2.4",
"elasticsearch/elasticsearch": "8.*",
"google/apiclient": "^2",
"google-gemini-php/client": "^2.7",
"league/oauth2-facebook": "^2.2",
"league/oauth2-github": "^3.1",
"league/oauth2-linkedin": "^5.1",
"matecat/cwh": "^3.1",
"matecat/klein": "^3.2",
"matecat/simple-s3": "^v2.0.0",
"matecat/subfiltering": "^4.1",
"matecat/whole-text-finder": "^2.0",
"matecat/xliff-parser": "~v3.0",
"matecat/icu-intl": "^v1",
"monolog/monolog": "^3",
"orhanerday/open-ai": "^4.7",
"phpmailer/phpmailer": "~6.1",
"phpoffice/phpspreadsheet": "~1.29",
"phptal/phptal": "^1.10.0",
"predis/predis": "^v3",
"psr/log": "^3.0",
"psr/event-dispatcher": "^1.0",
"untt/oauth2-microsoft": "^0.0.3",
"stomp-php/stomp-php": "^5.0",
"swaggest/json-schema": "^0.12.42",
"symfony/cache": "~7.3.9",
"symfony/console": "^5",
"translated/lara-sdk": "^1",
"ext-curl": "*",
"ext-pcntl": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-posix": "*",
"ext-zip": "*",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-intl": "*",
"ext-redis": "*"
},
"config": {
"use-include-path": true,
"allow-plugins": {
"php-http/discovery": true
},
"audit": {
"ignore": { "CVE-2026-45073": "PdoAdapter unused; MateCat uses FilesystemAdapter only" }
}
},
"autoload": {
"psr-4": {
"": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Matecat\\": "tests/unit"
}
}
}