-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
69 lines (67 loc) · 2.15 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
{
"name": "makaira/oxid-connect-essential",
"description": "Module for OXID eShop to connect it with Makaira.",
"type": "oxideshop-module",
"license": "GPL-3.0-or-later",
"homepage": "https://makaira.io/",
"authors": [
{
"name": "Stefan Krenz",
"email": "[email protected]"
},
{
"name": "Heike Reuter",
"email": "[email protected]"
},
{
"name": "Anton Fedurtsya",
"email": "[email protected]"
},
{
"name": "Duong Tran",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"makaira/shared-libs": "^2022.1",
"symfony/http-foundation": "^6.0",
"symfony/console": "^5.4 || ^6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9.14",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "^2.11",
"oxid-esales/oxideshop-ce": "dev-b-7.0.x"
},
"autoload": {
"psr-4": {
"Makaira\\OxidConnectEssential\\": "src/",
"Makaira\\OxidConnectEssential\\Test\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs --standard=tests/phpcs.xml",
"phpcbf": "phpcbf --standard=tests/phpcs.xml",
"phpstan": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --xdebug",
"phpstan-report": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --error-format=json --xdebug > phpstan.report.json",
"phpmd": "phpmd src text cleancode,codesize,design,naming,unusedcode",
"phpmd-report": "phpmd src json cleancode,codesize,design,naming,unusedcode --reportfile phpmd.report.json"
},
"extra": {
"oxideshop": {
"target-directory": "makaira/oxid-connect-essential"
}
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-unified-namespace-generator": true,
"oxid-esales/oxideshop-composer-plugin": false
}
}
}