-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.52 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": "rmunate/laravel_helpers",
"description": "Empower Your Laravel Journey: Unleash the Power of Helpers! Unlock a world of possibilities with our standard creation and seamless utilization of helpers within the Laravel framework. Our solution offers a simple, efficient, and elegant way to execute your application's custom methods from any class or view, making development a breeze. Supercharge your Laravel project and elevate your coding experience with our Helper Library.",
"keywords": [
"rmunate",
"artisan",
"laravel",
"helpers"
],
"homepage": "https://github.com/rmunate/LaravelHelpers",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Helpers\\Illuminate\\Support\\": "src/"
},
"files": [
"src/Helpers.php"
]
},
"authors": [
{
"name": "Raul Mauricio Uñate Castro",
"email": "[email protected]",
"homepage": "https://github.com/rmunate",
"role": "owner"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^11.0",
"illuminate/console": "^11.0"
},
"require-dev": {},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"laravel": {
"providers": [
"Helpers\\Illuminate\\Support\\Providers\\HelpersServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}