-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
68 lines (68 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "imanghafoori/laravel-heyman",
"description": "A package to help you write expressive defensive code in a functional manner",
"keywords": [
"laravel",
"laravel-authorization",
"laravel5-package",
"PHP",
"laravel5",
"laravel-acl",
"laravel-validation",
"eloquent-validation",
"laravel-permission",
"laravel-roles"
],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-HeyMan",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"laravel/framework": "~5.1|6.*|7.*|8.*|9.*|10.*|^11.0"
},
"require-dev": {
"orchestra/testbench": ">=3.0",
"barryvdh/laravel-debugbar": "^2.3|3.*|4.*",
"imanghafoori/laravel-makesure": "^1.0",
"imanghafoori/php-imports-analyzer": "^1.0.2",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Imanghafoori\\HeyMan\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Imanghafoori\\HeyManTests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"suggest": {
"imanghafoori/laravel-widgetize": "Gives you a better structure and caching opportunity for your web pages.",
"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.",
"imanghafoori/laravel-terminator": "Gives you opportunity to refactor your controllers."
},
"scripts": {
"test": "./vendor/bin/phpunit",
"imports": "./vendor/bin/check_imports"
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\HeyMan\\HeyManServiceProvider"
]
}
}
}