forked from WeareJH/m2-module-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.12 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
{
"name": "wearejh/m2-module-import",
"description": "Import module for Magento 2 - provides commands, utilities and abstractions for building imports for Magento 2 projects",
"type": "magento2-module",
"require": {
"php": "7.0.*",
"tightenco/collect": "^5.4",
"trash-panda/progress-bar-log": "^1.1",
"magento/framework": "^100",
"magento/module-catalog": "^101",
"magento/module-catalog-inventory": "^100.1",
"magento/module-configurable-product": "^100.1"
},
"require-dev": {
"magento/module-bundle": "^100",
"magento/module-catalog-inventory": "^100",
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^3.0",
"php-mock/php-mock": "^2.0",
"zendframework/zendframework1": "^1.12",
"symfony/filesystem": "^3.2",
"wearejh/m2-unit-test-helpers": "^1.1",
"zendframework/zend-code": "^2.4.6",
"monolog/monolog": "^1.22"
},
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"m2-unit-test-helpers": {
"type": "vcs",
"url": "[email protected]:WeareJH/m2-unit-test-helpers.git"
}
},
"autoload": {
"files": [
"src/registration.php",
"src/functions.php"
],
"psr-4": {
"Jh\\Import\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jh\\ImportTest\\": "test"
}
},
"scripts": {
"test": [
"@unit-tests",
"@cs"
],
"test-travis": [
"@unit-tests-coverage-clover",
"@cs"
],
"cs": "phpcs -s src --standard=PSR2 --extensions=php && phpcs -s test --standard=PSR2 --extensions=php",
"cs-fix": "phpcbf -s src --standard=PSR2 && phpcbf -s src --standard=PSR2",
"unit-tests": "phpunit --colors=always",
"unit-tests-coverage": "phpunit --colors=always -v --coverage-text",
"unit-tests-coverage-clover": "phpunit --colors=always -v --coverage-clover ./build/logs/clover.xml"
}
}