-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
78 lines (75 loc) · 2.62 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
75
76
77
78
{
"name": "oxid-esales/amazon-pay-module",
"description": "AmazonPay module for OXID",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "amazonpay", "amazon", "pay"],
"license": "proprietary",
"support": {
"source": "https://github.com/OXID-eSales/amazon-pay-module",
"issues": "https://bugs.oxid-esales.com",
"forum": "https://forum.oxid-esales.com",
"docs": "https://docs.oxid-esales.com/modules/amazon-pay/en/latest"
},
"require": {
"amzn/amazon-pay-api-sdk-php": "^2.5",
"ext-json": "*",
"viison/address-splitter": "^0.3.4",
"aws/aws-php-sns-message-validator": "^1.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"mockery/mockery": "^1.6",
"phpmd/phpmd": "^2.11",
"phpstan/phpstan": "^1.10.",
"symfony/dotenv": "^5.4",
"codeception/module-rest": "1.4.2",
"codeception/module-phpbrowser": "^1.0.2",
"oxid-esales/oxideshop-ce": "^6.3"
},
"conflicts": {
"oxid-esales/oxideshop-ce": "<6.3 | ^7.0"
},
"archive": {
"exclude": ["/resources"]
},
"extra": {
"oxideshop": {
"blacklist-filter": [
"resources/**/*",
"resources/**/*."
],
"target-directory": "osc/amazonpay"
}
},
"autoload": {
"psr-4": {
"OxidSolutionCatalysts\\AmazonPay\\": "src/",
"OxidSolutionCatalysts\\AmazonPay\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=tests/phpcs.xml",
"phpcbf": "phpcbf --standard=tests/phpcs.xml",
"phpmd": "phpmd src ansi tests/PhpMd/standard.xml --baseline-file 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",
"phpstan": "phpstan -ctests/PhpStan/phpstan.neon analyse -l 8 src/",
"phpstan-report": "phpstan -ctests/PhpStan/phpstan.neon analyse -l 8 src/ --error-format=json > phpstan.report.json",
"static": [
"@phpcs",
"@phpmd"
],
"generate-reports": [
"@phpmd-report"
],
"generate-baselines": [
"@phpmd-generate-baseline"
]
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-unified-namespace-generator": true,
"oxid-esales/oxideshop-composer-plugin": true
}
}
}