forked from pratyushpundir/laravel-buefy-preset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 977 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
{
"name": "feldsam-inc/laravel-buefy-preset",
"description": "This preset provides UI components that marry Bulma and VueJS together in the form of Buefy for any new Laravel site / web-app.",
"license": "MIT",
"keywords": ["laravel", "laravel frontend presets", "bulma", "buefy", "vuejs", "laravel vue bulma", "laravel bulma vuejs"],
"authors": [
{
"name": "pratyushpundir",
"email": "pratyushpundir@icloud.com"
},
{
"name": "Kristian Feldsam",
"email": "feldsam@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"laravel/framework": "^8.0",
"laravel/ui": "^3.0"
},
"autoload": {
"psr-4": {
"Feldsam\\LaravelBuefyPreset\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Feldsam\\LaravelBuefyPreset\\BuefyServiceProvider"
]
}
}
}