forked from livewire/flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 917 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
35
36
{
"name": "livewire/flux",
"description": "The official UI component library for Livewire.",
"keywords": ["flux", "laravel", "livewire", "components", "ui"],
"license": "proprietary",
"authors": [
{
"name": "Caleb Porzio",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0",
"symfony/console": "^6.0|^7.0",
"livewire/livewire": "^3.5",
"laravel/prompts": "^0.1.24"
},
"autoload": {
"psr-4": {
"Flux\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Flux\\FluxServiceProvider"
],
"aliases": {
"Flux": "Flux\\Flux"
}
}
}
}