-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
31 lines (31 loc) · 926 Bytes
/
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
{
"name": "silvershop/coloredvariations",
"description": "Add color support to variations for SilverShop.",
"type": "silverstripe-vendormodule",
"license": "BSD-2-Clause",
"keywords": ["silverstripe", "ecommerce", "shop", "comparison", "color"],
"require" : {
"silvershop/core": "^4"
},
"authors": [{
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-coloredvariations/graphs/contributors"
}],
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"prefer-stable": false,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverShop\\ColoredVariations\\": "src/",
"SilverShop\\ColoredVariations\\Tests\\": "tests/unit/"
}
}
}