-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (48 loc) · 1.07 KB
/
composer.json
File metadata and controls
49 lines (48 loc) · 1.07 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
{
"name": "sbodak/magento2-checkout-custom-form",
"description": "Add a custom form to Magento 2 checkout on the shipping step.",
"license": [
"MIT"
],
"type": "magento2-module",
"keywords": ["magento2", "custom checkout", "checkout form", "magento2-module"],
"version": "2.0.0",
"authors": [
{
"name": "Slawomir Bodak",
"email": "slawek.bodak@gmail.com"
}
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"magento/framework": "^103.0",
"magento/module-checkout": "^100.4",
"magento/module-quote": "^101.2",
"magento/module-sales": "^103.0",
"magento/module-store": "^101.1",
"laminas/laminas-filter": "^2.25"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.0"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Bodak\\CheckoutCustomForm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bodak\\CheckoutCustomForm\\Test\\": "src/Test/"
}
},
"extra": {
"magento-compatibility": {
"2.4.6": "*",
"2.4.7": "*",
"2.4.8": "*"
}
}
}