-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (71 loc) · 2.66 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
{
"name": "oxid-solution-catalysts/exportimport-tools",
"description": "OXID eSales extension for oe-console to im- and export the database",
"type": "oxideshop-component",
"keywords": ["oxid", "modules", "eShop", "oe-console", "export", "import"],
"homepage": "https://www.oxid-esales.com",
"license": ["GPL-3.0"],
"support": {
"source": "https://github.com/OXIDprojects/consoleexportimport",
"issues": "https://github.com/OXIDprojects/consoleexportimport/issues",
"forum": "https://forum.oxid-esales.com",
"docs": "https://github.com/OXIDprojects/consoleexportimport#readme"
},
"extra": {
"oxideshop": {
"target-directory": "osc/exportimport-tools",
"blacklist-filter": [
"resources/**/*",
"tests/**/*"
]
}
},
"require": {
"ifsnop/mysqldump-php": "v2.*"
},
"require-dev": {
"phpmd/phpmd": "^2.11",
"squizlabs/php_codesniffer": "3.*",
"oxid-esales/oxideshop-ce": "^6.8",
"phpstan/phpstan": "^1.10"
},
"conflict": {
"oxid-esales/oxideshop-ce": "<6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"OxidSolutionCatalysts\\ExportImportTools\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcs": "phpcs --standard=tests/phpcs.xml",
"phpcbf": "phpcbf --standard=tests/phpcs.xml",
"phpstan": "phpstan -ctests/PhpStan/phpstan.neon analyse src/",
"phpstan-generate-baseline": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --generate-baseline tests/PhpStan/phpstan-baseline.neon",
"phpstan-report": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --error-format=json > tests/reports/phpstan.report.json",
"phpmd": "phpmd src ansi tests/PhpMd/standard.xml --baseline tests/PhpMd/phpmd.baseline.xml",
"phpmd-generate-baseline": "phpmd src ansi tests/PhpMd/standard.xml --generate-baseline",
"phpmd-report": "phpmd src json tests/PhpMd/standard.xml --reportfile tests/reports/phpmd.report.json --baseline tests/PhpMd/phpmd.baseline.xml",
"static": [
"@phpcs",
"@phpstan",
"@phpmd"
],
"generate-reports": [
"@phpstan-report",
"@phpmd-report"
],
"generate-baselines": [
"@phpstan-generate-baseline",
"@phpmd-generate-baseline"
]
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-unified-namespace-generator": true,
"oxid-esales/oxideshop-composer-plugin": true
}
}
}