-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 925 Bytes
/
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
{
"name": "underser/module-translation-helper",
"description": "N/A",
"config": {
"sort-packages": true
},
"authors": [
{
"name": "Roman Sliusar",
"email": "roman.slusar95@gmail.com"
}
],
"require": {
"php": "~7.1.3||~7.2.0||~7.3.0",
"magento/magento2-base": "~2.3.0||~2.2.0",
"magento/framework": "~102.0.0||~101.0.0"
},
"require-dev": {
"magento/magento-coding-standard": "^4.0",
"phpunit/phpunit": "~6.5.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Underser\\TranslationHelper\\": ""
}
}
}