-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (79 loc) · 3.16 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
83
84
{
"name": "oxid-professional-services/usercentrics",
"description": " OXID Cookie Management powered by usercentrics",
"type": "oxideshop-module",
"license": ["proprietary"],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"symfony/yaml" : "> 3",
"ext-json": "*",
"symfony/filesystem": "^6.0"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"oxid-esales/oxideshop-ce": "dev-b-7.3.x",
"oxid-esales/twig-component": "dev-b-7.3.x",
"phpunit/phpunit": "^10.5",
"mikey179/vfsstream": "~1.6.8",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.8",
"phpmd/phpmd": "^2.15",
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.1",
"codeception/module-filesystem": "^3.0",
"codeception/module-webdriver": "^4.0",
"oxid-esales/codeception-modules": "dev-b-7.3.x",
"oxid-esales/codeception-page-objects": "dev-b-7.3.x",
"oxid-esales/developer-tools": "dev-b-7.3.x"
},
"conflict": {
"oxid-esales/oxideshop-ce": "<7.3"
},
"autoload": {
"psr-4": {
"OxidProfessionalServices\\Usercentrics\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OxidProfessionalServices\\Usercentrics\\Tests\\": "tests/",
"OxidEsales\\EshopCommunity\\Tests\\": "./vendor/oxid-esales/oxideshop-ce/tests"
}
},
"scripts": {
"phpcs": "phpcs --standard=tests/phpcs.xml --report=full",
"phpcs-report": "phpcs --standard=tests/phpcs.xml --report=json --report-file=phpcs.report.json",
"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 --ignore-errors-on-exit --ignore-violations-on-exit",
"phpmd-report": "phpmd src json tests/PhpMd/standard.xml --ignore-errors-on-exit --ignore-violations-on-exit --reportfile phpmd.report.json",
"static": [
"@phpcs",
"@phpstan",
"@phpmd"
],
"tests-unit": "XDEBUG_MODE=coverage vendor/bin/phpunit --config=tests/ --testsuite=Unit --coverage-clover=tests/Reports/coverage_unit_module-usercentrics.xml",
"tests-integration": "XDEBUG_MODE=coverage vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/ --testsuite=Integration --coverage-clover=tests/Reports/coverage_integration_module-usercentrics.xml",
"tests-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/result/Reports/CoverageHtml",
"tests-codeception": [
"Composer\\Config::disableProcessTimeout",
"THEME_ID=apex MODULE_IDS=oxps_usercentrics vendor/bin/codecept run Acceptance -c tests/codeception.yml --no-redirect"
],
"tests-all": [
"@tests-unit",
"@tests-integration",
"@tests-codeception"
]
},
"config": {
"allow-plugins": {
"oxid-esales/oxideshop-unified-namespace-generator": true,
"oxid-esales/oxideshop-composer-plugin": true
}
}
}