-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
91 lines (91 loc) · 2.6 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "boxblinkracer/phpunuhi",
"version": "1.23.0",
"license": "MIT",
"description": "Easy tool to work with translation files for validation, exports, imports and more.",
"homepage": "https://github.com/boxblinkracer/phpunuhi",
"keywords": [
"translation",
"language",
"deepl",
"openai",
"spell-checker",
"grammar-checker",
"shopware",
"developer tools",
"automation",
"localization"
],
"authors": [
{
"name": "Christian Dangl"
}
],
"bin": [
"bin/phpunuhi"
],
"config": {
"platform": {
"php": "7.4"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"ocramius/package-versions": true,
"infection/extension-installer": true
}
},
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"deeplcom/deepl-php": "^1.2",
"google/cloud-translate": "^1.12",
"orhanerday/open-ai": "^5.1",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/process": "*",
"symfony/yaml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"infection/infection": "*",
"phparkitect/phparkitect": "*",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "*",
"phpunit/phpunit": "*",
"povils/phpmnd": "*",
"rector/rector": "*",
"roave/security-advisories": "dev-latest",
"rregeer/phpunit-coverage-check": "*",
"spaze/phpstan-disallowed-calls": "*",
"squizlabs/php_codesniffer": "*",
"staabm/phpstan-todo-by": "*",
"svrunit/svrunit": "dev-main"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"suggest": {
"TumTum/phpunuhi-export-excel": "Export translations directly into Spreadsheet for easy review and processing."
},
"scripts": {
"post-install-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
],
"post-update-cmd": [
"[ ! -f vendor/bin/phpcs ] || vendor/bin/phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility"
]
}
}