-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
105 lines (105 loc) · 3.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ibexa/automated-translation",
"description": "Ibexa Automated Translation Bundle provides interfaces to automatically translate a new content translation from different translation providers.",
"keywords": [
"novactive",
"ibexa",
"translation",
"deepl",
"googletranslate"
],
"repositories": [
{
"type": "composer",
"url": "https://updates.ibexa.co"
}
],
"homepage": "https://github.com/ibexa/automated-translation",
"type": "ibexa-bundle",
"authors": [
{
"name": "Ibexa AS",
"homepage": "https://ibexa.co",
"email": "[email protected]"
},
{
"name": "Novactive",
"homepage": "http://www.novactive.us",
"email": "[email protected]"
}
],
"license": "(GPL-2.0-only or proprietary)",
"require": {
"php": "^8.3",
"ext-libxml": "*",
"symfony/yaml": "^5.0",
"symfony/routing": "^5.0",
"symfony/console": "^5.0",
"symfony/form": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/event-dispatcher": "^5.0",
"guzzlehttp/guzzle": "^6.3.0",
"ibexa/core": "~5.0.0@dev",
"ibexa/fieldtype-richtext": "~5.0.0@dev",
"ibexa/admin-ui": "~5.0.0@dev"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"ibexa/calendar": "~5.0.x-dev",
"ibexa/code-style": "~2.0.0",
"ibexa/content-forms": "~5.0.x-dev",
"ibexa/design-engine": "~5.0.x-dev",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/fieldtype-page": "~5.0.x-dev",
"ibexa/http-cache": "~5.0.x-dev",
"ibexa/migrations": "~5.0.x-dev",
"ibexa/notifications": "~5.0.x-dev",
"ibexa/rest": "~5.0.x-dev",
"ibexa/search": "~5.0.x-dev",
"ibexa/user": "~5.0.x-dev",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"Ibexa\\AutomatedTranslation\\": "src/lib/",
"Ibexa\\Bundle\\AutomatedTranslation\\": "src/bundle/",
"Ibexa\\Contracts\\AutomatedTranslation\\": "src/contracts/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\AutomatedTranslation\\": "tests/lib/",
"Ibexa\\Tests\\Bundle\\AutomatedTranslation\\": "tests/bundle/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --config=.php-cs-fixer.php --show-progress=dots",
"fix-cs-changed": "@fix-cs $(git diff ${GIT_DIFF_BASE:-origin/main} --diff-filter=ACMR --name-only \"*.php\"|paste -sd ' ')",
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse -c phpstan.neon",
"check-cs-changed": "@fix-cs-changed --dry-run",
"check-cs": "@fix-cs --dry-run"
},
"scripts-descriptions": {
"fix-cs": "Automatically fixes code style in all files",
"fix-cs-changed": "Automatically fixes code style in changed files only, compared to branch in GIT_DIFF_BASE env variable, defaults to origin/main",
"test": "Run automatic tests",
"phpstan": "Run static code analysis",
"check-cs-changed": "Run code style checker against changed files only, compared to branch in GIT_DIFF_BASE env variable, defaults to origin/main",
"check-cs": "Run code style checker for all files"
},
"config": {
"sort-packages": true,
"allow-plugins": false
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
}
}