-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
82 lines (79 loc) · 2.96 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
79
80
81
82
{
"name": "oxid-solution-catalysts/paypal-module",
"description": "OXID eSales PayPal payment module for OXID",
"type": "oxideshop-module",
"keywords": ["oxid", "modules", "eShop", "paypal", "payment"],
"homepage": "https://www.oxid-esales.com",
"license": ["GPL-3.0"],
"support": {
"source": "https://github.com/OXID-eSales/paypal-module",
"issues": "https://github.com/OXID-eSales/paypal-module/issues",
"forum": "https://forum.oxid-esales.com",
"docs": "https://docs.oxid-esales.com/modules/paypal-checkout/en/latest"
},
"extra": {
"oxideshop": {
"target-directory": "osc/paypal",
"blacklist-filter": [
"resources/**/*",
"tests/**/*"
]
}
},
"require": {
"giggsey/libphonenumber-for-php": "^8.12",
"viison/address-splitter": "^0.3.4",
"webmozart/path-util": "^2.3.0",
"oxid-solution-catalysts/paypal-client": "v2.0.16"
},
"require-dev": {
"codeception/module-rest": "^1.4.2",
"codeception/module-phpbrowser": "^1.0.2",
"codeception/module-db": "^1.1.0",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "^2.11",
"symfony/dotenv": "^5.1",
"oxid-esales/oxideshop-ce": "^6.8",
"phpstan/phpstan": "^1.10"
},
"conflict": {
"oxid-esales/oxideshop-ce": "<6.8 | ^7.0"
},
"autoload": {
"psr-4": {
"OxidSolutionCatalysts\\PayPal\\": "src/",
"OxidSolutionCatalysts\\PayPal\\Tests\\": "tests/"
}
},
"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
}
}
}