-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
50 lines (50 loc) · 1.73 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
49
50
{
"name": "imanghafoori/laravel-widgetize",
"description": "A minimal yet powerful package to give a better structure and caching opportunity for your Laravel apps.",
"keywords": ["laravel", "laravel-cache", "PHP"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-widgetize",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3|7.2.*|7.3.*|7.4.*|^8.0",
"laravel/framework":"~5.1|6.*|7.*|8.*|9.*|10.*|11.*"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require-dev": {
"orchestra/testbench": "~3.0|~4.0|~5.0|~6.0|~7.0|~8.0|~9.0|~10.0",
"imanghafoori/php-imports-analyzer": "1.0.*",
"barryvdh/laravel-debugbar": ">=v1.0.0",
"mockery/mockery": ">=0.9"
},
"autoload": {
"psr-4": {
"Imanghafoori\\Widgets\\": "src"
},
"files": [
"src/helpers.php"
]
},
"suggest": {
"imanghafoori/laravel-heyman": "It allows to write expressive code to authorize, validate and authenticate.",
"imanghafoori/laravel-decorator": "Allows you to easily apply the decorator pattern.",
"imanghafoori/laravel-terminator": "Gives you the opportunity to refactor your controllers.",
"imanghafoori/laravel-anypass": " Allows you login with any password in local environment.",
"imanghafoori/laravel-masterpass": "You can easily set a master password without code change."
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\Widgets\\WidgetsServiceProvider"
]
}
}
}