-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
66 lines (66 loc) · 1.75 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
{
"name": "oxid-esales/unzer",
"description": "OXID eSales unzer payment module for OXID",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"unzer",
"payment"
],
"homepage": "https://www.oxid-esales.com",
"license": [
"GPL-3.0"
],
"extra": {
"oxideshop": {
"target-directory": "osc/unzer",
"blacklist-filter": [
"Tests/**/*"
]
}
},
"require": {
"unzerdev/php-sdk": "^v3.4.1",
"webmozart/path-util": "^2.3.0",
"guzzlehttp/guzzle": "^7.7",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.9.2",
"phpmd/phpmd": "^2.11",
"oxid-esales/oxideshop-ce": "dev-b-6.3.x",
"phpunit/php-code-coverage": "*"
},
"conflicts": {
"oxid-esales/oxideshop-ce": "<6.8 | ^7.0"
},
"autoload": {
"psr-4": {
"OxidSolutionCatalysts\\Unzer\\": "src",
"OxidSolutionCatalysts\\Unzer\\Tests\\": "Tests"
}
},
"scripts": {
"phpcs": "phpcs --standard=Tests/phpcs.xml",
"phpcbf": "phpcbf --standard=Tests/phpcs.xml",
"phpstan": "phpstan -cTests/PhpStan/phpstan.neon analyse src/",
"phpstan-report": "phpstan -cTests/PhpStan/phpstan.neon analyse src/ --error-format=json > phpstan.report.json",
"phpmd": "phpmd src ansi Tests/PhpMd/standard.xml",
"phpmd-excludestaticaccess": "phpmd src ansi Tests/PhpMd/exclude-static-access-rule.xml",
"phpmd-report": "phpmd src json Tests/PhpMd/standard.xml --reportfile tests/reports/phpmd.report.json",
"static": [
"@phpcs",
"@phpstan",
"@phpmd"
]
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-unified-namespace-generator": true,
"oxid-esales/oxideshop-composer-plugin": true
}
}
}