-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 831 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 831 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
{
"name": "fruitcake/magento2-alwaysloginascustomer",
"description": "Magento2 Always allow admin to login as customer",
"keywords": [
"magento",
"magento2",
"login as customer"
],
"license": [
"MIT"
],
"type": "magento2-module",
"authors": [
{
"name": "Fruitcake",
"email": "info@fruitcake.nl"
}
],
"require": {
"php": "^7.1|^8",
"magento/module-login-as-customer": "^100.4"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Fruitcake\\AlwaysLoginAsCustomer\\": ""
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "1.2-dev"
}
}
}