-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 977 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
{
"name": "peachcode/sampleproduct",
"description": "This Magento 2 module allows your e-shop conduct sale and management of product samples, enabling customers to try your products before making a purchase.\n",
"keywords": ["magento", "magento2 extension", "magento 2 extension", "extension", "module", "magento2 module", "magento 2 module"],
"homepage": "https://github.com/anatoliidolia/ProductSampler",
"require": {
"php": "~8.1.0||~8.2.0"
},
"type": "magento2-module",
"minimum-stability": "dev",
"version": "1.0.0",
"prefer-stable": true,
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "Anatolii Dolia",
"email": "doliaanatolii@gmail.com",
"role": "developer"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"PeachCode\\SampleProduct\\": ""
}
}
}