-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 822 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 822 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
{
"name": "bastinald/ux",
"description": "Laravel UI, Auth, & CRUD scaffolding package using Bootstrap & Livewire.",
"homepage": "https://github.com/bastinald/ux",
"license": "MIT",
"authors": [
{
"name": "Kevin Dion",
"email": "bastinald@icloud.com",
"role": "Developer"
}
],
"require": {
"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\\Ux\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Bastinald\\Ux\\Providers\\UxServiceProvider"
]
}
}
}