-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.3 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
{
"name": "bhuvidya/laravel-helper-loader",
"description": "Load multiple helpers from a source directory, providing support for them to be concatenated into a cache file in the bootstrap/cache directory.",
"authors": [
{
"name": "bhu Boue vidya",
"email": "[email protected]",
"homepage": "https://github.com/bhuvidya",
"role": "Developer"
}
],
"keywords": [
"bhuvidya",
"laravel",
"helpers"
],
"homepage": "https://github.com/bhuvidya/laravel-helper-loader",
"license": "MIT",
"require": {
"php": ">=7.1.0",
"laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"BhuVidya\\HelperLoader\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"source": "https://github.com/bhuvidya/laravel-helper-loader",
"issues": "https://github.com/bhuvidya/laravel-helper-loader/issues"
},
"extra": {
"laravel": {
"providers": [
"BhuVidya\\HelperLoader\\HelperLoaderServiceProvider"
],
"aliases": {
"HelperLoader": "BhuVidya\\HelperLoader\\HelperLoaderFacade"
}
}
}
}