-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 837 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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": "bastinald/ui",
"homepage": "https://github.com/bastinald/ui",
"description": "Laravel Livewire & Bootstrap 5 UI starter kit.",
"license": "MIT",
"authors": [
{
"name": "Kevin Dion",
"email": "bastinald@icloud.com",
"role": "Developer"
}
],
"require": {
"barryvdh/laravel-ide-helper": "^2.10",
"doctrine/dbal": "^3.0",
"jamesmills/laravel-timezone": "^1.9",
"laravel/framework": "^8.0",
"livewire/livewire": "^2.0",
"lukeraymonddowning/honey": "^0.3"
},
"autoload": {
"psr-4": {
"Bastinald\\Ui\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Bastinald\\Ui\\Providers\\UiProvider"
]
}
}
}