forked from mikebronner/laravel-impersonator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.36 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "genealabs/laravel-impersonator",
"description": "Impersonate users in your Laravel 5.+ app.",
"license": "MIT",
"authors": [
{
"name": "GeneaLabs, LLC",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/config": ">=5.5",
"illuminate/console": ">=5.5",
"illuminate/contracts": ">=5.5",
"illuminate/http": ">=5.5",
"illuminate/routing": ">=5.5",
"illuminate/session": ">=5.5",
"illuminate/support": ">=5.5",
"illuminate/view": ">=5.5"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.4.4",
"fzaninotto/faker": "~1.4",
"laravel/laravel": ">=5.5",
"mockery/mockery": "0.9.*",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": ">=6.0",
"php-coveralls/php-coveralls" : "*",
"sebastian/phpcpd": "*",
"laravel/browser-kit-testing": "^2.0"
},
"autoload": {
"classmap": [],
"psr-4": {
"GeneaLabs\\LaravelImpersonator\\": "src/",
"GeneaLabs\\LaravelImpersonator\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"GeneaLabs\\LaravelImpersonator\\Providers\\Service"
]
}
},
"minimum-stability": "stable"
}