-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
75 lines (72 loc) · 2.19 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
{
"name": "oxid-solution-catalysts/adyen-module",
"description": "",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop"
],
"license": [
"GPL-3.0"
],
"support": {
"source": "https://github.com/OXID-eSales/adyen-module",
"issues": "https://bugs.oxid-esales.com",
"forum": "https://forum.oxid-esales.com",
"docs": "https://docs.oxid-esales.com/modules/adyen/en/latest"
},
"extra": {
"oxideshop": {
"target-directory": "osc/adyen",
"blacklist-filter": [
"source/**/*",
"vendor/**/*"
]
}
},
"prefer-stable": true,
"prefer-dist": true,
"require": {
"php": "^7.4 | ^8.0",
"adyen/php-api-library": "14.*"
},
"require-dev": {
"codeception/module-rest": "^2.0.2",
"codeception/module-phpbrowser": "^2.0.3",
"codeception/module-db": "^2.0.2",
"phpstan/phpstan": "^1.9.2",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "^2.11",
"dg/bypass-finals": "^1.4",
"oxid-esales/oxideshop-ce": "dev-b-6.5.x"
},
"conflicts": {
"oxid-esales/oxideshop-ce": "<6.12 | ^7.0"
},
"autoload": {
"psr-4": {
"OxidSolutionCatalysts\\Adyen\\": "src/",
"OxidSolutionCatalysts\\Adyen\\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 text tests/phpmd.xml",
"phpmd-report": "phpmd src json cleancode,codesize,design,naming,unusedcode --reportfile phpmd.report.json",
"static": [
"@phpcs",
"@phpstan",
"@phpmd"
]
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-composer-plugin": true,
"oxid-esales/oxideshop-unified-namespace-generator": true
}
}
}