-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 873 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
31
32
33
34
35
36
37
{
"name": "bpocallaghan/impersonate",
"description": "Debugging a problem and need to login as one of your customers? This allows you to authenticate as any of your customers.",
"keywords": [
"laravel",
"impersonate",
"users",
"login as",
"development",
"impersonation"
],
"license": "MIT",
"authors": [
{
"name": "Ben-Piet O'Callaghan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3.0"
},
"autoload": {
"psr-4": {
"Bpocallaghan\\Impersonate\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Bpocallaghan\\Impersonate\\ImpersonateServiceProvider"
]
}
}
}