forked from zepgram/module-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·34 lines (34 loc) · 772 Bytes
/
composer.json
File metadata and controls
executable file
·34 lines (34 loc) · 772 Bytes
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
{
"name": "zepgram/module-rest",
"description": "Technical module to industrialize API REST call with dependency injection pattern using Guzzle library in Magento 2",
"type": "magento2-module",
"version": "1.1.1",
"authors": [
{
"name": "Benjamin Calef",
"email": "zepgram@gmail.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"magento/framework": "^103.0.4",
"zepgram/module-base": "~0.0.1",
"zepgram/module-json-schema": "~0.1.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Zepgram\\Rest\\": ""
}
},
"license": "MIT",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}