-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.08 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
{
"name": "bkubicki/magento2-polish-noun-numeral-declension-adapter",
"description": "Magento 2 adapter for polish noun numeral declension library",
"type": "library",
"license": [
"MIT"
],
"authors": [
{
"name": "Bartosz Kubicki",
"email": "[email protected]"
}
],
"version": "1.0.0",
"minimum-stability": "stable",
"require": {
"php": "^7.2.0|~7.3.0",
"bkubicki/polish-noun-numeral-declension": "^1.0",
"magento/framework": "^101.0|^102.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0.0"
},
"keywords": [
"magento2",
"noun",
"declension",
"decle",
"numeral"
],
"autoload": {
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"BKubicki\\Magento2PolishNounNumeralDeclensionAdapter\\Test\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"scripts": {
"test-unit-coverage": "vendor/bin/phpunit -c phpunit.xml --testsuite 'Unit' --coverage-html coverage/coverage-html --colors=always"
}
}