-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 950 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
{
"name": "pavelleonidov/magento2-webapi-pdfinvoice",
"description":"REST API connector to EaDesignro's PDF generator, returns given invoice as base64-encoded PDF output string",
"keywords": [
"magento 2",
"pdf",
"rest client"
],
"require": {
"php": "~5.6.0|7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0|~7.3.0|~7.4.0",
"magento/module-backend": "^100.1.0| ^100.2.0 | ^101.0.0 | ^102.0.0 | ^103.0.0",
"magento/module-sales": "^100.1.0| ^101.0.0 | ^102.0.0 | ^103.0.0",
"magento/framework": "^100.1.0| ^101.0.0 | ^102.0.0 | ^103.0.0",
"eadesignro/module-pdfgenerator": "^1.2 | dev-master"
},
"type": "magento2-module",
"version": "0.0.3",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"PavelLeonidov\\WebApiPdfInvoice\\": ""
}
}
}