-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.01 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "fooman/printorderpdf-implementation-m2",
"description": "Print the order as a pdf from the admin",
"type": "magento2-module",
"license": "OSL-3.0",
"version": "105.5.1",
"autoload": {
"psr-4": {
"Fooman\\PrintOrderPdf\\": "src/"
},
"files": [
"src/registration.php"
]
},
"autoload-dev": {
"psr-4": {
"Fooman\\PrintOrderPdf\\UnitTest\\": "tests/unit/testsuite/Fooman/PrintOrderPdf/UnitTest",
"Fooman\\PrintOrderPdf\\": "tests/integration/testsuite/Fooman/PrintOrderPdf"
}
},
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"magento/framework": "^103.0.4-p13",
"magento/module-backend": "^102.0.4-p12",
"magento/module-sales": "^103.0.4-p13"
},
"require-dev": {
"fooman/testing-and-quality-tools": "^1.5.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}