forked from yireo-training/Yireo_React
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 934 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 934 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
35
36
37
38
39
40
41
42
43
44
{
"name": "smile/magento2-react",
"type": "magento2-component",
"license": "OSL-3.0",
"description": "Module to add React to Magento 2 KO frontend",
"keywords":[ "composer-installer", "magento"],
"authors": [
{
"name": "Jisse Reitsma (Yireo)",
"email": "jisse@yireo.com"
},
{
"name": "Romain Ruaud (Smile)",
"email": "romain.ruaud@smile.fr"
}
],
"require": {
"magento/framework": "^100.1|^101.0|^102.0|^103.0",
"magento/magento-composer-installer": "*"
},
"require-dev":{
"composer/composer":"*@dev"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Smile\\React\\": ""
}
},
"extra": {
"map": [
[
"webpack.config.js",
"webpack.config.js"
],
[
"package.json",
"package.json"
]
]
}
}