-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.67 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "netresearch/oro-hide-unavailable-variants-bundle",
"description": "This OroCommerce bundle hides attribute combinations of configurable products in the storefront, if an applicable variant product does not exist.",
"license": "OSL-3.0",
"type": "symfony-bundle",
"keywords": [
"Oro",
"Product",
"Variant",
"Store"
],
"homepage": "https://www.netresearch.de/technologien/orocommerce/",
"authors": [
{
"name": "Netresearch DTT GmbH",
"email": "plugins@netresearch.de",
"role": "Manufacturer",
"homepage": "https://www.netresearch.de/"
}
],
"require": {
"php": ">=8.2",
"oro/commerce": "5.1.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.72.0",
"oro/phpstan-rules": "^2.0",
"phpstan/extension-installer": "^1.2",
"rector/rector": "*",
"squizlabs/php_codesniffer": "~4.0.0"
},
"autoload": {
"psr-4": {
"Netresearch\\HideUnavailableVariantsBundle\\": "src/"
}
},
"scripts": {
"phpcs": "phpcs --standard=PSR12 src",
"rector": "rector",
"phpstan": "phpstan analyze --level 7 -a vendor/autoload.php src",
"analysis": [
"@phpcs",
"@rector --dry-run --no-progress-bar",
"@phpstan --no-progress"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
}
}
}