-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
49 lines (49 loc) · 1.35 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
{
"name": "phpro/mage2-module-translations",
"description": "Manage translations via the Magento backend",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "PHPro NV",
"email": "[email protected]",
"homepage": "https://www.phpro.be/"
}
],
"require": {
"php": "^8.2",
"magento/framework": "^102.0|^103.0",
"magento/module-backend": "^101.0|^102.0",
"magento/module-ui": "^101.0|^102.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.59.0",
"magento/magento-coding-standard": "^33",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp-shim": "^2.6",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "~3.7"
},
"autoload": {
"psr-4": {
"Phpro\\Translations\\": ""
},
"files": [
"registration.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}