-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 995 Bytes
/
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
{
"name": "lazerg/laravel-macros",
"description": "Laravel macros",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "lazerg",
"email": "lazerg2@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0|^8.2",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"ballen/distical": "^3.1.0"
},
"autoload": {
"psr-4": {
"Lazerg\\LaravelMacros\\": "src/"
}
},
"suggest": {
"barryvdh/laravel-ide-helper": "This package generates helper files that enable your IDE to provide accurate autocompletion. Generation is done based on the files in your project, so they are always up-to-date."
},
"extra": {
"laravel": {
"providers": [
"Lazerg\\LaravelMacros\\LaravelMacrosServiceProvider"
]
}
}
}