-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 952 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
32
33
34
{
"name": "tde/craft-commerce-product-bundles",
"description": "Combine multiple products into a purchasable bundle to sell these for a special price.",
"type": "craft-plugin",
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0",
"craftcms/commerce": "^4.1"
},
"license": "proprietary",
"authors": [
{
"name": "TDE",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"tde\\craft\\commerce\\bundles\\": "src/"
}
},
"extra": {
"name": "Commerce Product Bundles",
"handle": "commerce-product-bundles",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/tdeNL/craft-commerce-product-bundles/master/CHANGELOG.md",
"documentationUrl": "https://github.com/tdeNL/craft-commerce-product-bundles",
"components": {
"productBundleService": "tde\\craft\\commerce\\bundles\\services\\ProductBundleService"
},
"class": "tde\\craft\\commerce\\bundles\\Plugin"
}
}