forked from drmaxbdc/magento-2-cors-requests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 871 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
{
"name": "lpouwelse/magento-2-cors-requests",
"description": "Enabling cross-origin resource sharing (CORS) requests to Magento 2 API from configured Origin domain",
"homepage": "https://github.com/splashlab/magento-2-cors-requests",
"type": "magento2-module",
"version": "100.0.8",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"support": {
"issues": "https://github.com/splashlab/magento-2-cors-requests/issues",
"source": "https://github.com/splashlab/magento-2-cors-requests"
},
"require": {
"php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0||~8.1.0||~8.2.0||~8.3.0",
"magento/framework": "*",
"magento/module-webapi": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"SplashLab\\CorsRequests\\": ""
}
}
}