-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (62 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (62 loc) · 1.8 KB
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
{
"name": "d3/oqm",
"description": "D3 Bestellmengenmanager",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"d3",
"packung",
"minimal",
"maximal",
"menge"
],
"authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
"support": {
"email": "support@shopmodule.com"
},
"homepage": "https://www.oxidmodule.com/",
"license": [
"proprietary"
],
"require": {
"php": "^8.0",
"ext-sourceguardian": ">=15",
"oxid-esales/oxideshop-ce": "7.0 - 7.3",
"d3/modcfg": "^7.0",
"beberlei/assert": "^v3.2",
"cweagans/composer-patches": "~1.7.0",
"oxid-esales/twig-component": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.66.0",
"boxblinkracer/phpunuhi": "^1.12",
"d3/testingtools": "^1.2.0.0",
"phpunit/phpunit": "^9.1.1"
},
"autoload": {
"psr-4": {
"D3\\Oqm\\": ""
}
},
"autoload-dev": {
"psr-4": {
"D3\\Oqm\\Tests": "./Tests"
}
},
"scripts": {
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --config=vendor/d3/oqm/.php-cs-fixer.php",
"phpunit": "XDEBUG_MODE=off ./vendor/bin/phpunit --config=vendor/d3/oqm/Tests/ --testsuite Unit,Integration --no-coverage",
"phpunit-line-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --config=vendor/d3/oqm/Tests/ --testsuite Unit --coverage-html=vendor/d3/oqm/Tests/result/coverage",
"phpunit-path-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --config=vendor/d3/oqm/Tests/ --testsuite Unit --coverage-html=vendor/d3/oqm/Tests/result/coverage --path-coverage",
"phpunuhi": "./vendor/bin/phpunuhi --configuration=vendor/d3/oqm/phpunuhi.xml validate"
}
}