-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (77 loc) · 2.77 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
{
"name": "fresh-advance/nutrition-facts",
"description": "Possibility to manage nutrition tables for every product",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop"
],
"license": [
"GPL-3.0"
],
"prefer-stable": true,
"require": {
"php": "^8.0 | ^8.1"
},
"minimum-stability": "dev",
"require-dev": {
"phpstan/phpstan": "^1.9.14",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "^2.11",
"oxid-esales/oxideshop-ce": "dev-b-7.0.x",
"phpunit/phpunit": "^9.6",
"mikey179/vfsstream": "~1.6.8",
"codeception/codeception": "*",
"codeception/module-asserts": "*",
"codeception/module-db": "*",
"codeception/module-filesystem": "*",
"codeception/module-webdriver": "*",
"oxid-esales/codeception-modules": "dev-b-7.0.x",
"oxid-esales/codeception-page-objects": "dev-b-7.0.x",
"oxid-esales/developer-tools": "dev-b-7.0.x"
},
"conflict": {
"oxid-esales/oxideshop-ce": "<7.0"
},
"autoload": {
"psr-4": {
"FreshAdvance\\NutritionFacts\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"FreshAdvance\\NutritionFacts\\Tests\\": "./tests",
"OxidEsales\\EshopCommunity\\Tests\\": "./vendor/oxid-esales/oxideshop-ce/tests"
}
},
"scripts": {
"phpcs": "phpcs --standard=tests/phpcs.xml",
"phpcbf": "phpcbf --standard=tests/phpcs.xml",
"phpstan": "phpstan -ctests/PhpStan/phpstan.neon analyse src/",
"phpmd": "phpmd src,tests ansi tests/PhpMd/standard.xml",
"static": [
"@phpcs",
"@phpstan",
"@phpmd"
],
"tests-unit": "vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/",
"tests-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/result/coverage",
"tests-clover": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-clover=tests/Reports/coverage_fa_nutrition_facts.xml --bootstrap=/var/www/source/bootstrap.php --config=tests/",
"tests-codeception": [
"Composer\\Config::disableProcessTimeout",
"THEME_ID=twig MODULE_IDS=fa_nutrition_facts 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-composer-plugin": true,
"oxid-esales/oxideshop-unified-namespace-generator": true
}
}
}