-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
37 lines (37 loc) · 1.26 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
{
"name": "activecampaign/module-integration",
"description": "ActiveCampaign extension for Magento 2.3 and 2.4",
"type": "magento2-component",
"license": "OSL-3.0",
"require": {
"php": "~7.3.0||~7.4.0||~8.0||~8.1||~8.2"
},
"replace": {
"activecampaign/core": "self.version",
"activecampaign/customer": "self.version",
"activecampaign/abandoned-cart": "self.version",
"activecampaign/order": "self.version",
"activecampaign/sync-log": "self.version",
"activecampaign/newsletter": "self.version"
},
"autoload": {
"files": [
"Core/registration.php",
"Customer/registration.php",
"AbandonedCart/registration.php",
"Order/registration.php",
"SyncLog/registration.php",
"Newsletter/registration.php"
],
"psr-4": {
"ActiveCampaign\\Core\\": "Core",
"ActiveCampaign\\Customer\\": "Customer",
"ActiveCampaign\\AbandonedCart\\": "AbandonedCart",
"ActiveCampaign\\Order\\": "Order",
"ActiveCampaign\\SyncLog\\": "SyncLog",
"ActiveCampaign\\Newsletter\\": "Newsletter"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}