-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 1.25 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
{
"name": "imanghafoori/laravel-middlewarize",
"description": "Use laravel middlewares on any method calls in your app",
"keywords": ["laravel", "laravel-middlewares", "laravel-package", "PHP", "pipeline"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-middlewarize",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]"
}
],
"require": {
"php": "7.3.*|7.4.*|^8.0",
"illuminate/container":"~5.1|6.*|7.*|8.*|9.*|10.*|11.*|12.*",
"illuminate/pipeline":"~5.1|6.*|7.*|8.*|9.*|10.*|11.*|12.*"
},
"require-dev": {
"orchestra/testbench": "~7.0|~8.0"
},
"autoload": {
"psr-4": {
"Imanghafoori\\Middlewarize\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Imanghafoori\\Middlewarize\\Tests\\": "tests"
}
},
"suggest": {
"imanghafoori/laravel-heyman": "It allows to write expressive code to authorize, validate and authenticate.",
"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."
}
}