forked from imanghafoori1/laravel-MasterPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.6 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
{
"name": "imanghafoori/laravel-masterpass",
"description": "A minimal yet powerful package to help you easily impersonate your users.",
"keywords": ["laravel","laravel-utility","laravel5-package","PHP","laravel5"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-masterpass",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"laravel/framework":"^5.5|^6.0|^7.0|^8.0|^9.0"
},
"autoload-dev": {
"classmap": [
"database"
],
"psr-4": {
"Imanghafoori\\MasterPass\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "^3.5|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"Imanghafoori\\MasterPass\\": "src"
}
},
"suggest": {
"imanghafoori/laravel-heyman": "It allows to write expressive code to authorize, validate and authenticate.",
"imanghafoori/laravel-widgetize": "Gives you a better structure and caching opportunity for your laravel apps.",
"imanghafoori/laravel-decorator": "Allows you to easily apply the decorator pattern in a laravel app.",
"imanghafoori/laravel-anypass": " Allows you login with any password in local environment.",
"imanghafoori/laravel-terminator": "Gives you opportunity to refactor your controllers."
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\MasterPass\\MasterPassServiceProvider"
]
}
}
}